From fdba568b1030cabf74f6021754f344271123d9d1 Mon Sep 17 00:00:00 2001 From: Jordan Matelsky Date: Tue, 17 Oct 2023 14:41:50 -0400 Subject: [PATCH] v0.4.0 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92e2605..087fbf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +### **0.4.0** (October 17 2023) + +> Many performance updates, language features, and label support. + +#### Features + +- Support for multi-hop queries in `MATCH` statements (#24, thanks @khoale88!) +- Support for single edge and node labels using the `__labels__` magic property (#25, thanks @khoale88!) + +#### Performance + +- Performance improvements by @khoale88 that eliminate duplicated entity lookups (#28) + ### **0.3.0** (December 14 2022) > This version adds support for boolean arithmetic with AND/OR, and other language features. diff --git a/setup.py b/setup.py index 10bd807..187fd47 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="grand-cypher", - version="0.3.0", + version="0.4.0", author="Jordan Matelsky", author_email="opensource@matelsky.com", description="Query Grand graphs using Cypher",