Skip to content

Commit

Permalink
chore: 2.2.1 Release (#177)
Browse files Browse the repository at this point in the history
This release allows to install latest versions of,

- `attrs`
- `environ-config`

As well as depend on only supported version of `openapi-core` library,
which ensures that `poetry update` do not install unsupported version
of `openapi-core`.

Other:
------

- (**deps**) bump pyyaml from 5.3.1 to 5.4.1 (#147)
- (**deps-dev**) bump coverage from 5.3.1 to 5.4 (#145)
- (**deps-dev**) bump pytest from 6.2.1 to 6.2.2 (#146)
- (**deps-dev**) bump pytest-cov from 2.10.1 to 2.11.1 (#144)
- (**deps**) bump peter-evans/create-pull-request from v3.6.0 to v3.8.0 (#148)
- Bump Python dev version to 3.9.2 (#160)
- (**deps**) bump actions/cache from v2.1.3 to v2.1.4 (#158)
- (**deps**) bump pypa/gh-action-pypi-publish from v1.4.1 to v1.4.2 (#157)
- (**deps**) bump peter-evans/create-pull-request from v3.8.0 to v3.8.2 (#156)
- (**deps**) bump actions/setup-python from v2.2.1 to v2.2.2 (#165)
- (**deps**) bump actions/cache from v2.1.4 to v2.1.5 (#166)
- (**deps**) bump pre-commit/action from v2.0.0 to v2.0.3 (#167)
- (**deps**) bump environ-config from 20.1.0 to 21.1.0 (#164)
- (**deps-dev**) bump pytest from 6.2.2 to 6.2.3 (#163)
- [#149] Pin supported openapi-core version (#170)
- Apply isort pre-commit hook (#174)
- (**deps**) bump attrs from 20.3.0 to 21.2.0 (#171)
- (**deps-dev**) bump pytest from 6.2.3 to 6.2.4 (#173)
- Update requirements (#175)

Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
  • Loading branch information
1 parent 67f1b36 commit da3565b
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
2.2.1 (2021-05-09)
==================

This release allows to install latest versions of,

- ``attrs``
- ``environ-config``

As well as depend on only supported version of ``openapi-core`` library,
which ensures that ``poetry update`` do not install unsupported version
of ``openapi-core``.

**Other:**

- (**deps**) bump pyyaml from 5.3.1 to 5.4.1 (#147)
- (**deps-dev**) bump coverage from 5.3.1 to 5.4 (#145)
- (**deps-dev**) bump pytest from 6.2.1 to 6.2.2 (#146)
- (**deps-dev**) bump pytest-cov from 2.10.1 to 2.11.1 (#144)
- (**deps**) bump peter-evans/create-pull-request from v3.6.0 to v3.8.0 (#148)
- Bump Python dev version to 3.9.2 (#160)
- (**deps**) bump actions/cache from v2.1.3 to v2.1.4 (#158)
- (**deps**) bump pypa/gh-action-pypi-publish from v1.4.1 to v1.4.2 (#157)
- (**deps**) bump peter-evans/create-pull-request from v3.8.0 to v3.8.2 (#156)
- (**deps**) bump actions/setup-python from v2.2.1 to v2.2.2 (#165)
- (**deps**) bump actions/cache from v2.1.4 to v2.1.5 (#166)
- (**deps**) bump pre-commit/action from v2.0.0 to v2.0.3 (#167)
- (**deps**) bump environ-config from 20.1.0 to 21.1.0 (#164)
- (**deps-dev**) bump pytest from 6.2.2 to 6.2.3 (#163)
- [#149] Pin supported openapi-core version (#170)
- Apply isort pre-commit hook (#174)
- (**deps**) bump attrs from 20.3.0 to 21.2.0 (#171)
- (**deps-dev**) bump pytest from 6.2.3 to 6.2.4 (#173)
- Update docs requirements (#175)

2.2.0 (2021-01-05)
==================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ virtual_env = "./.venv/"

[tool.poetry]
name = "rororo"
version = "2.2.0"
version = "2.2.1"
description = "aiohttp.web OpenAPI 3 schema first server applications."
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/rororo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@

__author__ = "Igor Davydenko"
__license__ = "BSD-3-Clause"
__version__ = "2.2.0"
__version__ = "2.2.1"
2 changes: 1 addition & 1 deletion tests/rororo/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "rororo",
"version": "2.2.0",
"version": "2.2.1",
"contact": {
"name": "Igor Davydenko (developer)",
"url": "https://igordavydenko.com",
Expand Down
2 changes: 1 addition & 1 deletion tests/rororo/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: "3.0.3"

info:
title: "rororo"
version: "2.2.0"
version: "2.2.1"
contact:
name: "Igor Davydenko (developer)"
url: "https://igordavydenko.com"
Expand Down

0 comments on commit da3565b

Please sign in to comment.