diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fa8c6d2..e368e3d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +2.3.0 (2024-02-11) +================== + +**Features:** + +- Bump Python dev version to 3.12.2 (and drop Python 3.7) (#195) + +**Other:** + +- [#196] Configure Trusted Publisher for the repository (#197) + 2.2.1 (2023-11-23) ================== diff --git a/pyproject.toml b/pyproject.toml index 5667825..8a6e5ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,7 +63,7 @@ warn_unused_ignores = true [tool.poetry] name = "aiohttp-middlewares" -version = "2.2.1" +version = "2.3.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 da5840d..7f17032 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.2.1" +__version__ = "2.3.0" # Make flake8 happy