diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7c07c22..b54edbd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,19 @@ +2.2.0 (2022-10-26) +================== + +Set ``3.11.0`` as Python dev version, which ensures that *aiohttp-middlewares* +works well with latest Python. + +**Features:** + +- Ensure Python 3.11.0 support (#135) + 2.1.1 (2022-10-23) ================== **Other:** -- Sync common project files (#119) +- Sync common project files (#119, #130) - (**docs**) Bump requirements for docs (#121) - Use poetry 1.2.0 for managing project dependencies (#122) - Fix read the docs configuration (#124) @@ -11,7 +21,6 @@ - Install project and docs deps on post install job (#126) - Do not expect to fail on Python 3.11 (#123) - (**deps**) bump peter-evans/create-pull-request from 4.0.4 to 4.1.2 (#128) -- Sync common project files (#130) - Update Python dev version to 3.10.8 (#131) - Enforce mypy no-implicit-optional setting (#132) - Integrate no-optional pre-commit hook (#133) diff --git a/pyproject.toml b/pyproject.toml index b6681c1..95994e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ warn_unused_ignores = true [tool.poetry] name = "aiohttp-middlewares" -version = "2.1.1" +version = "2.2.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 ceaaf76..32b8534 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.1.1" +__version__ = "2.2.0" # Make flake8 happy