From 2cfdcd4a0064de5b23f1328646454a73c2b462dd Mon Sep 17 00:00:00 2001 From: Marius Conjeaud Date: Wed, 22 May 2024 09:31:43 +0200 Subject: [PATCH] Update version number and Changelog --- Changelog | 3 ++- README.md | 2 +- django_neomodel/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index fdb2f18..7438f09 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ -Version 0.1.2 2024-05 +Version 0.2.0 2024-05 * Bump neomodel to 5.3.0 +* Bump Django to 4.2.8 LTS Version 0.1.1 2023-08 * Bump neomodel to 5.1.0 - full support of Neo4j version 5.x (and 4.4 LTS) diff --git a/README.md b/README.md index 085133c..aada41b 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ Delete all nodes in your database, warning there is no confirmation! ## Requirements -- Python 3.7+ +- Python 3.8+ - neo4j 5.x, 4.4 (LTS) ## Docker Example diff --git a/django_neomodel/__init__.py b/django_neomodel/__init__.py index bb3b0ae..81b3252 100644 --- a/django_neomodel/__init__.py +++ b/django_neomodel/__init__.py @@ -16,7 +16,7 @@ __email__ = "robin.ge@gmail.com" __license__ = "MIT" __package__ = "django_neomodel" -__version__ = "0.1.2" +__version__ = "0.2.0" default_app_config = "django_neomodel.apps.NeomodelConfig" diff --git a/pyproject.toml b/pyproject.toml index 968ab41..284a211 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "neomodel~=5.3.0", 'django>=4.2.8' ] -version='0.1.2' +version='0.2.0' [project.urls] repository = "http://github.com/robinedwards/django-neomodel"