Skip to content

Commit

Permalink
chore: 0.2.0 Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
playpauseandstop committed Jul 23, 2019
1 parent 4760a4b commit a8ae2ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
Changelog
=========

0.2.0 (In Development)
======================
0.2.0 (2019-07-23)
==================

- chore: Release **0.2.0** version with new CORS & Error middlewares and
dropped support of Python 3.5 and aiohttp < 3.5

0.2.0b2 (2019-07-22)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_middlewares/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

__version__ = "0.2.0b2"
__version__ = "0.2.0"

from .constants import IDEMPOTENT_METHODS, NON_IDEMPOTENT_METHODS
from .cors import cors_middleware
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line_length = 79

[tool.poetry]
name = "aiohttp-middlewares"
version = "0.2.0b2"
version = "0.2.0"
description = "Collection of useful middlewares for aiohttp applications."
authors = ["Igor Davydenko <[email protected]>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup_kwargs = {
'name': 'aiohttp-middlewares',
'version': '0.2.0b2',
'version': '0.2.0',
'description': 'Collection of useful middlewares for aiohttp applications.',
'long_description': '===================\naiohttp-middlewares\n===================\n\n.. image:: https://img.shields.io/circleci/project/github/playpauseandstop/aiohttp-middlewares/master.svg\n :target: https://circleci.com/gh/playpauseandstop/aiohttp-middlewares\n :alt: CircleCI\n\n.. image:: https://img.shields.io/pypi/v/aiohttp-middlewares.svg\n :target: https://pypi.org/project/aiohttp-middlewares/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/aiohttp-middlewares.svg\n :target: https://pypi.org/project/aiohttp-middlewares/\n :alt: Python versions\n\n.. image:: https://img.shields.io/pypi/l/aiohttp-middlewares.svg\n :target: https://github.com/playpauseandstop/aiohttp-middlewares/blob/master/LICENSE\n :alt: BSD License\n\n.. image:: https://coveralls.io/repos/playpauseandstop/aiohttp-middlewares/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/playpauseandstop/aiohttp-middlewares\n :alt: Coverage\n\n.. image:: https://readthedocs.org/projects/aiohttp-middlewares/badge/?version=latest\n :target: http://aiohttp-middlewares.readthedocs.org/en/latest/\n :alt: Documentation\n\nCollection of useful middlewares for `aiohttp <http://aiohttp.readthedocs.org/>`_\napplications.\n\n- Works on Python 3.6+\n- Works with aiohttp 3.5+\n- BSD licensed\n- Latest documentation `on Read The Docs\n <https://aiohttp-middlewares.readthedocs.io/>`_\n- Source, issues, and pull requests `on GitHub\n <https://github.com/playpauseandstop/aiohttp-middlewares>`_\n',
'author': 'Igor Davydenko',
Expand Down

0 comments on commit a8ae2ab

Please sign in to comment.