Skip to content

Commit

Permalink
Update docs for v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j6k4m8 committed Dec 14, 2022
1 parent 896a344 commit fd34aea
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
@@ -1,10 +1,17 @@
# CHANGELOG

### (Unreleased)
### **0.3.0** (December 14 2022)

> This version adds support for boolean arithmetic with AND/OR, and other language features.
#### Features

- Support for undirected edges (`(A)-[]-(B)`)
- Support for boolean arithmetic with AND/OR (#20, thanks @khoale88!)
- Support for undirected edges (`(A)-[]-(B)`)

#### Housekeeping

- Add install dependencies to `setup.py`

### **0.2.0** (December 12 2022)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -74,11 +74,11 @@ RETURN
| Backwards `()<-[]-()` edges | ✅ Thanks @khoale88! | |
| Anonymous `()` nodes | ✅ Thanks @khoale88! | |
| Undirected `()-[]-()` edges | ✅ Thanks @khoale88! | |
| Boolean Arithmetic (`AND`/`OR`) | 🛣 | |
| Boolean Arithmetic (`AND`/`OR`) | ✅ Thanks @khoale88! | |
| `OPTIONAL MATCH` | 🛣 | |
| `(:Type)` node-types | 🛣 | |
| `[:Type]` edge-types | 🛣 | |
| Graph mutations (e.g. `DELETE`, `SET`,...) | 🔴 | |
| Graph mutations (e.g. `DELETE`, `SET`,...) | 🛣 | |

| | | |
| -------------- | -------------- | ---------------- |
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Expand Up @@ -3,11 +3,9 @@
with open("README.md", "r") as fh:
long_description = fh.read()

["sqlalchemy"]

setuptools.setup(
name="grand-cypher",
version="0.2.0",
version="0.3.0",
author="Jordan Matelsky",
author_email="opensource@matelsky.com",
description="Query Grand graphs using Cypher",
Expand All @@ -20,4 +18,10 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"grandiso",
"lark-parser",
"networkx",
],
)

0 comments on commit fd34aea

Please sign in to comment.