Skip to content

Commit cec4e89

Browse files
chore: 2.3.0 Release (#203)
Use Python 3.10 as dev version, as well as update minimum supported `openapi-core` version to **0.13.4**. Also loose a bit `pyrsistent` & `PyYAML` requirements to allow dependent projects use latest versions of given libraries. Other: ------ - (**deps**) bump actions/cache from 2.1.5 to 2.1.6 (#185) - (**deps**) bump peter-evans/create-pull-request from 3.8.2 to 3.10.0 (#186) - (**deps**) bump environ-config from 21.1.0 to 21.2.0 (#183) - (**deps-dev**) bump pytest-cov from 2.11.1 to 2.12.1 (#187) - (**deps**) bump email-validator from 1.1.2 to 1.1.3 (#190) - (**deps**) bump pyrsistent from 0.17.3 to 0.18.0 (#189) - (**deps**) bump urllib3 from 1.26.4 to 1.26.5 in /docs (#188) - (**deps-dev**) bump aioredis from 1.3.1 to 2.0.0 (#192) - (**deps**) bump tibdex/github-app-token from 1.3 to 1.4 (#197) - Use Python 3.10 as dev version (#194) - (**deps**) bump peter-evans/create-pull-request from 3.10.0 to 3.10.1 (#198) - (**deps**) bump PyYAML from 5.4.1 to 6.0 (#201) Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
1 parent f6edcef commit cec4e89

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

CHANGELOG.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
2.3.0 (2021-10-31)
2+
==================
3+
4+
Use Python 3.10 as dev version, as well as update minimum supported
5+
``openapi-core`` version to **0.13.4**.
6+
7+
Also loose a bit ``pyrsistent`` & ``PyYAML`` requirements to allow dependent
8+
projects use latest versions of given libraries.
9+
10+
**Other:**
11+
12+
- (**deps**) bump actions/cache from 2.1.5 to 2.1.6 (#185)
13+
- (**deps**) bump peter-evans/create-pull-request from 3.8.2 to 3.10.0 (#186)
14+
- (**deps**) bump environ-config from 21.1.0 to 21.2.0 (#183)
15+
- (**deps-dev**) bump pytest-cov from 2.11.1 to 2.12.1 (#187)
16+
- (**deps**) bump email-validator from 1.1.2 to 1.1.3 (#190)
17+
- (**deps**) bump pyrsistent from 0.17.3 to 0.18.0 (#189)
18+
- (**deps**) bump urllib3 from 1.26.4 to 1.26.5 in /docs (#188)
19+
- (**deps-dev**) bump aioredis from 1.3.1 to 2.0.0 (#192)
20+
- (**deps**) bump tibdex/github-app-token from 1.3 to 1.4 (#197)
21+
- Use Python 3.10 as dev version (#194)
22+
- (**deps**) bump peter-evans/create-pull-request from 3.10.0 to 3.10.1 (#198)
23+
- (**deps**) bump PyYAML from 5.4.1 to 6.0 (#201)
24+
125
2.2.2 (2021-05-10)
226
==================
327

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ ignore_missing_imports = true
7575

7676
[tool.poetry]
7777
name = "rororo"
78-
version = "2.2.2"
78+
version = "2.3.0"
7979
description = "aiohttp.web OpenAPI 3 schema first server applications."
8080
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
8181
license = "BSD-3-Clause"

src/rororo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939

4040
__author__ = "Igor Davydenko"
4141
__license__ = "BSD-3-Clause"
42-
__version__ = "2.2.2"
42+
__version__ = "2.3.0"

tests/rororo/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.3",
33
"info": {
44
"title": "rororo",
5-
"version": "2.2.2",
5+
"version": "2.3.0",
66
"contact": {
77
"name": "Igor Davydenko (developer)",
88
"url": "https://igordavydenko.com",

tests/rororo/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: "3.0.3"
22

33
info:
44
title: "rororo"
5-
version: "2.2.2"
5+
version: "2.3.0"
66
contact:
77
name: "Igor Davydenko (developer)"
88
url: "https://igordavydenko.com"

0 commit comments

Comments
 (0)