From b360b37289a3d99eec630b2e2d4c1719e555ac49 Mon Sep 17 00:00:00 2001 From: Igor Davydenko Date: Wed, 13 Nov 2019 13:28:34 +0200 Subject: [PATCH] chore: 0.3.1 Release. --- CHANGELOG.rst | 10 ++++++---- aiohttp_middlewares/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f11bce0..e3cd40f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,14 +2,16 @@ Changelog ========= -0.3.1 (In Development) -====================== +0.3.1 (2019-11-13) +================== + +- chore: Release **0.3.1** version 0.3.1a0 (2019-11-13) -------------------- -- chore: Deploy `aiohttp-middlewares` from `py38` image to ensure Python 3.8 - classifier added +- chore: Pulbish `aiohttp-middlewares` to PyPI from `py38` image to ensure + Python 3.8 classifier used 0.3.0 (2019-11-12) ================== diff --git a/aiohttp_middlewares/__init__.py b/aiohttp_middlewares/__init__.py index 6ef2a76..9659189 100644 --- a/aiohttp_middlewares/__init__.py +++ b/aiohttp_middlewares/__init__.py @@ -7,7 +7,7 @@ """ -__version__ = "0.3.1a0" +__version__ = "0.3.1" from .constants import IDEMPOTENT_METHODS, NON_IDEMPOTENT_METHODS from .cors import cors_middleware diff --git a/pyproject.toml b/pyproject.toml index 2ac2b3b..b9769b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line_length = 79 [tool.poetry] name = "aiohttp-middlewares" -version = "0.3.1a0" +version = "0.3.1" description = "Collection of useful middlewares for aiohttp applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause"