diff --git a/docs/changelog.rst b/docs/changelog.rst index f6b140c..a80ec55 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,12 +1,12 @@ Changelog ========= -Unreleased +v2.4.0 (2023 Jul 29) -------------------- -* Add support for Django 4.1 & 4.2 -* Add support for Python 3.11 -* Drop support for Django 4.0 +* Add support for Django 4.1 & 4.2 (thanks @irtazaakram) +* Add support for Python 3.11 (thanks @irtazaakram) +* Drop support for Django 4.0 (thanks @irtazaakram) v2.3.1 (2022 Aug 14) -------------------- diff --git a/docs/conf.py b/docs/conf.py index 6024366..0412d1c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Sébastien Fievet" # The full version, including alpha/beta/rc tags -release = "2.3.1" +release = "2.4.0" # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 29ea770..f4a5177 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.1 +current_version = 2.4.0 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 8ae29ae..002daca 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="django-statici18n", - version="2.3.1", + version="2.4.0", author="Sebastien Fievet", author_email="zyegfryed@gmail.com", url="http://django-statici18n.readthedocs.org/", diff --git a/src/statici18n/__init__.py b/src/statici18n/__init__.py index 645d518..68abf88 100644 --- a/src/statici18n/__init__.py +++ b/src/statici18n/__init__.py @@ -1,5 +1,5 @@ # following PEP 386 -__version__ = "2.3.1" +__version__ = "2.4.0" import django