diff --git a/CHANGELOG.md b/CHANGELOG.md index 568441c..63754ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # CHANGELOG -## **0.5.0** (Unreleased) +## **0.5.0** (April 17, 2024) +- Features + - https://github.com/aplbrain/grand/pull/45 (thanks @davidmezzetti!) + - Improved support for SQL backend, including an index on edge.sources and edge.targets + - Improved batch-adding performance for nodes and edges - Housekeeping - Removed extra arguments to Graph constructor and improved Graph kwargs handing - Added `grand.DiGraph` convenience wrapper for directed graphs diff --git a/setup.py b/setup.py index 1602e4f..2444234 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name="grand-graph", - version="0.4.2", + version="0.5.0", author="Jordan Matelsky", author_email="opensource@matelsky.com", description="Graph database wrapper for non-graph datastores",