diff --git a/docs/changelog.md b/docs/changelog.md index c6f90a4a..4a36290a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,15 @@ # Changelog +## v1.6.0 - July 10, 2024 + +### Features and improvements +- Added `SIMILAR` operator to query builder (https://github.com/memgraph/gqlalchemy/pull/304) +- Better documented how to load CSV from a remote location: to load CSV from a remote location, provide a URL as a path (https://github.com/memgraph/gqlalchemy/pull/305) +- You can now add relationship properties in many-to-many mapping when importing a CSV file (https://github.com/memgraph/gqlalchemy/pull/306) +- Added getter and setter for Memgraph storage modes (https://github.com/memgraph/gqlalchemy/pull/309) +- Added `get_transactions()` and `terminate_transactions()` methods for easier transaction management (https://github.com/memgraph/gqlalchemy/pull/310) +- Added support for `ZonedDateTime` data type (https://github.com/memgraph/gqlalchemy/pull/312) + ## v1.5.1 - January 8, 2024 ### Updates diff --git a/pyproject.toml b/pyproject.toml index ecdf37d8..39bdab84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,14 @@ [tool.poetry] name = "GQLAlchemy" -version = "1.5.1" +version = "1.6.0" description = "GQLAlchemy is a library developed to assist with writing and running queries in Memgraph." repository = "https://github.com/memgraph/gqlalchemy" authors = [ - "Josip Mrden ", "Katarina Supe ", "Andi Skrgat ", "Ante Pusic ", + "Josip Mrden ", ] license = "Apache-2.0" readme = "README.md"