Skip to content

Commit

Permalink
chore: 2.1.0 Release (#113)
Browse files Browse the repository at this point in the history
Fixes:
------

- **BREAKING CHANGE:** (**cors**) Handle CORS correctly in case of HTTPException (#98)

Other:
------

- Fix auto release tag workflow (#107)
- Introduce reusable actions & workflows (#108)
- Add tests to latest changes in CORS middleware (#109)
- (**deps-dev**) bump coverage from 6.4.1 to 6.4.2 (#110)
- (**deps-dev**) bump mypy from 0.961 to 0.971 (#111)
- (**deps-dev**) bump pytest-asyncio from 0.18.3 to 0.19.0 (#112)

Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
  • Loading branch information
1 parent 9c6d0a3 commit 1b1bd7d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2.1.0 (2022-07-25)
==================

**Fixes:**

- **BREAKING CHANGE:** (**cors**) Handle CORS correctly in case of HTTPException (#98)

**Other:**

- Fix auto release tag workflow (#107)
- Introduce reusable actions & workflows (#108)
- Add tests to latest changes in CORS middleware (#109)
- (**deps-dev**) bump coverage from 6.4.1 to 6.4.2 (#110)
- (**deps-dev**) bump mypy from 0.961 to 0.971 (#111)
- (**deps-dev**) bump pytest-asyncio from 0.18.3 to 0.19.0 (#112)

2.0.0 (2022-06-22)
==================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ ignore_errors = true

[tool.poetry]
name = "aiohttp-middlewares"
version = "2.0.0"
version = "2.1.0"
description = "Collection of useful middlewares for aiohttp applications."
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/aiohttp_middlewares/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

__author__ = "Igor Davydenko"
__license__ = "BSD-3-Clause"
__version__ = "2.0.0"
__version__ = "2.1.0"


# Make flake8 happy
Expand Down

0 comments on commit 1b1bd7d

Please sign in to comment.