diff --git a/CHANGELOG.md b/CHANGELOG.md index bdff04d..3fd86de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +### **0.7.0** (May 4 2024) + +> Support for `ORDER BY` and `DISTINCT` + +#### Features + +- Support for `ORDER BY` in queries, including `ASC` and `DESC`, and chaining multiple sorts (#41, thanks @jackboyla!) +- Support for `DISTINCT` in queries (#40, thanks @jackboyla!) + +#### Housekeeping + +- Refactor `return` for readability (#41, thanks @jackboyla!) + ### **0.6.0** (February 15 2024) > New path group operator diff --git a/grandcypher/__init__.py b/grandcypher/__init__.py index 52e59ef..35d9c2a 100644 --- a/grandcypher/__init__.py +++ b/grandcypher/__init__.py @@ -155,7 +155,7 @@ start="start", ) -__version__ = "0.5.0" +__version__ = "0.7.0" _ALPHABET = string.ascii_lowercase + string.digits diff --git a/setup.py b/setup.py index a28708a..84d153b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="grand-cypher", - version="0.6.0", + version="0.7.0", author="Jordan Matelsky", author_email="opensource@matelsky.com", description="Query Grand graphs using Cypher",