diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e368e3d..fa8c6d2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,14 +1,3 @@ -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 8a6e5ae..5667825 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.2.1" 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..da5840d 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.2.1" # Make flake8 happy