diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cec5e94..c303233 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ Changelog ========= -1.1.0 (In Development) -====================== +1.1.0 (2020-04-21) +================== - Provide ``get_error_response`` coroutine to allow other projects to reuse error handling logic diff --git a/aiohttp_middlewares/__init__.py b/aiohttp_middlewares/__init__.py index 8c8b40a..fadb5ea 100644 --- a/aiohttp_middlewares/__init__.py +++ b/aiohttp_middlewares/__init__.py @@ -7,7 +7,7 @@ """ -__version__ = "1.1.0a0" +__version__ = "1.1.0" from .constants import IDEMPOTENT_METHODS, NON_IDEMPOTENT_METHODS from .cors import cors_middleware diff --git a/pyproject.toml b/pyproject.toml index fedf368..a56cec0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ show_missing = true [tool.poetry] name = "aiohttp-middlewares" -version = "1.1.0a0" +version = "1.1.0" description = "Collection of useful middlewares for aiohttp applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause"