From e543135ca140c8240cf30fae97aa7533d4ed9442 Mon Sep 17 00:00:00 2001 From: Igor Davydenko Date: Tue, 14 Jan 2020 15:13:40 +0300 Subject: [PATCH] chore: 1.0.0 Release Release next stable version, which highlights updates to error middleware and first class support of `yarl.URL` instances within the library. --- CHANGELOG.rst | 9 ++++++--- aiohttp_middlewares/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 041ebab..98d78b6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,15 +2,18 @@ Changelog ========= -1.0.0 (In Development) -====================== +1.0.0 (2020-01-14) +================== + +- chore: Release **1.0.0** version which highlights updates to error middleware + and first class support of `yarl.URL` instances within the library 1.0.0b1 (2020-01-14) -------------------- - chore: Make default error handler available to import as, - .. code-block:: python + .. code-block:: python from aiohttp_middlewares import default_error_handler diff --git a/aiohttp_middlewares/__init__.py b/aiohttp_middlewares/__init__.py index f975013..65dcb09 100644 --- a/aiohttp_middlewares/__init__.py +++ b/aiohttp_middlewares/__init__.py @@ -7,7 +7,7 @@ """ -__version__ = "1.0.0b1" +__version__ = "1.0.0" from .constants import IDEMPOTENT_METHODS, NON_IDEMPOTENT_METHODS from .cors import cors_middleware diff --git a/pyproject.toml b/pyproject.toml index 1524473..22893de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line_length = 79 [tool.poetry] name = "aiohttp-middlewares" -version = "1.0.0b1" +version = "1.0.0" description = "Collection of useful middlewares for aiohttp applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause"