diff --git a/CHANGELOG.md b/CHANGELOG.md index e13d99c3..1f8e440a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v2.0.0 (2023-06-27) + +### Feature + +* Drop support for Python 3.7 ([`ba9e6c0`](https://github.com/browniebroke/django-codemod/commit/ba9e6c0b4a23c29ff0cbb6a606dcb209025570f0)) + +### Breaking + +* Drop support for Python 3.7 as it reached EOL on June 27, 2023. More infos: https://devguide.python.org/versions/ ([`ba9e6c0`](https://github.com/browniebroke/django-codemod/commit/ba9e6c0b4a23c29ff0cbb6a606dcb209025570f0)) + ## v1.11.7 (2023-03-27) ### Fix * **deps:** Update dependency rich to v13.3.3 ([`3251dcc`](https://github.com/browniebroke/django-codemod/commit/3251dcc9aed94747d7769c4ae864621cc6dc9e6c)) diff --git a/pyproject.toml b/pyproject.toml index 26c1a43b..8344b653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-codemod" -version = "1.11.7" +version = "2.0.0" description = "A command line tool to automatically fix Django deprecations." authors = ["Bruno Alla "] license = "MIT" diff --git a/src/django_codemod/__init__.py b/src/django_codemod/__init__.py index cdf0deea..8c0d5d5b 100644 --- a/src/django_codemod/__init__.py +++ b/src/django_codemod/__init__.py @@ -1 +1 @@ -__version__ = "1.11.7" +__version__ = "2.0.0"