diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 52137a5..117d992 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,20 @@ +2.4.0 (2024-08-14) +================== + +**Features:** + +- Ensure Python 3.13 support (#239) + +**Other:** + +- Reflect changes to supported Python versions in README (#204) +- Monthly maintenance (Aug 2024) (#230) +- (**deps**) Bump actions/checkout in the ci-dependencies group (#231) +- (**deps**) Bump aiohttp from 3.9.3 to 3.10.3 (#233) +- (**deps**) Bump idna from 3.6 to 3.7 (#220) +- Update dev dependencies to latest versions (#240) +- (**deps-dev**) Bump the dev-dependencies group across 1 directory with 2 updates (#241) + 2.3.0 (2024-02-11) ================== diff --git a/pyproject.toml b/pyproject.toml index 6a95e04..b710f0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,7 +63,7 @@ warn_unused_ignores = true [tool.poetry] name = "aiohttp-middlewares" -version = "2.3.0" +version = "2.4.0" description = "Collection of useful middlewares for aiohttp applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause" diff --git a/src/aiohttp_middlewares/__init__.py b/src/aiohttp_middlewares/__init__.py index 7f17032..204185f 100644 --- a/src/aiohttp_middlewares/__init__.py +++ b/src/aiohttp_middlewares/__init__.py @@ -26,7 +26,7 @@ __author__ = "Igor Davydenko" __license__ = "BSD-3-Clause" -__version__ = "2.3.0" +__version__ = "2.4.0" # Make flake8 happy