Skip to content

Commit 065ccf1

Browse files
chore: 2.4.1 Release (#221)
Maintenance release, which in same time ensures that `rororo` installs `typing-extensions` only for Python <3.8. Thanks @q0w for contribution. Other: ------ - (**deps**) bump actions/checkout from 2.3.5 to 2.4.0 (#218) - (**deps**) bump actions/setup-python from 2.2.2 to 2.3.1 (#216) - (**deps**) bump actions/cache from 2.1.6 to 2.1.7 (#214) - (**deps**) bump tibdex/github-app-token from 1.4 to 1.5 (#215) - (**deps**) bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#217) - (**deps**) bump aiohttp from 3.8.0 to 3.8.1 (#211) - (**deps**) bump aiohttp-middlewares from 1.2.0 to 1.2.1 (#209) - (**deps**) bump typing-extensions from 3.10.0.2 to 4.0.1 (#213) - (**deps-dev**) bump coverage from 6.1.1 to 6.2 (#210) - (**deps-dev**) bump types-pyyaml from 6.0.0 to 6.0.1 (#212) - Fix link (#219) - Install typing_extensions only for python<3.8 (#220) Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
1 parent 1d260a0 commit 065ccf1

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
2.4.1 (2021-12-16)
2+
==================
3+
4+
Maintenance release, which in same time ensures that ``rororo`` installs
5+
``typing-extensions`` only for Python <3.8. Thanks `@q0w <https://github.com/q0w>`_
6+
for contribution.
7+
8+
**Other:**
9+
10+
- (**deps**) bump actions/checkout from 2.3.5 to 2.4.0 (#218)
11+
- (**deps**) bump actions/setup-python from 2.2.2 to 2.3.1 (#216)
12+
- (**deps**) bump actions/cache from 2.1.6 to 2.1.7 (#214)
13+
- (**deps**) bump tibdex/github-app-token from 1.4 to 1.5 (#215)
14+
- (**deps**) bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#217)
15+
- (**deps**) bump aiohttp from 3.8.0 to 3.8.1 (#211)
16+
- (**deps**) bump aiohttp-middlewares from 1.2.0 to 1.2.1 (#209)
17+
- (**deps**) bump typing-extensions from 3.10.0.2 to 4.0.1 (#213)
18+
- (**deps-dev**) bump coverage from 6.1.1 to 6.2 (#210)
19+
- (**deps-dev**) bump types-pyyaml from 6.0.0 to 6.0.1 (#212)
20+
- Fix link (#219)
21+
- Install typing_extensions only for python<3.8 (#220)
22+
123
2.4.0 (2021-11-06)
224
==================
325

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.4.0"
78+
version = "2.4.1"
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.4.0"
42+
__version__ = "2.4.1"

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.4.0",
5+
"version": "2.4.1",
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.4.0"
5+
version: "2.4.1"
66
contact:
77
name: "Igor Davydenko (developer)"
88
url: "https://igordavydenko.com"

0 commit comments

Comments
 (0)