From a9542b581f3a3abf5ff726e86709f5e26e9b57eb Mon Sep 17 00:00:00 2001 From: Adam Schill Collberg Date: Fri, 16 May 2025 15:42:42 +0200 Subject: [PATCH] Add changelog entry and bump to 0.3.1 In preparation for next release. --- changelog.md | 18 ++++++++++++++++++ python-wrapper/pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 changelog.md diff --git a/changelog.md b/changelog.md new file mode 100644 index 00000000..eb12c876 --- /dev/null +++ b/changelog.md @@ -0,0 +1,18 @@ +# Changes in 0.3.1 + + +## Breaking changes + + +## New features + + +## Bug fixes + + +## Improvements + +* Allow for `Node` and `Relationship` inputs to be given as `camelCase` and `SCREAMING_SNAKE_CASE` (in addition to `snake_case`). + + +## Other changes diff --git a/python-wrapper/pyproject.toml b/python-wrapper/pyproject.toml index 2b9b5511..ce474e31 100644 --- a/python-wrapper/pyproject.toml +++ b/python-wrapper/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "neo4j-viz" -version = "0.3.0" +version = "0.3.1" description = "A simple graph visualization tool" readme = "README.md" authors = [{ name = "Neo4j", email = "team-gds@neo4j.org" }]