Skip to content

Commit

Permalink
Roll v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j6k4m8 committed May 4, 2024
1 parent 664ab96 commit a6d0587
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion grandcypher/__init__.py
Expand Up @@ -155,7 +155,7 @@
start="start",
)

__version__ = "0.5.0"
__version__ = "0.7.0"


_ALPHABET = string.ascii_lowercase + string.digits
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit a6d0587

Please sign in to comment.