Skip to content

Commit 634f21f

Browse files
chore: 2.2.2 Release (#180)
Fixes: ------ - Ensure that Operation ID is an optional value (#178) Other: ------ - Depend on typing-extensions (#179) Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
1 parent e58a80d commit 634f21f

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2.2.2 (2021-05-10)
2+
==================
3+
4+
**Fixes:**
5+
6+
- Ensure that Operation ID is an optional value (#178)
7+
8+
**Other:**
9+
10+
- Depend on typing-extensions (#179)
11+
112
2.2.1 (2021-05-09)
213
==================
314

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ virtual_env = "./.venv/"
3131

3232
[tool.poetry]
3333
name = "rororo"
34-
version = "2.2.1"
34+
version = "2.2.2"
3535
description = "aiohttp.web OpenAPI 3 schema first server applications."
3636
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
3737
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.1"
42+
__version__ = "2.2.2"

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

0 commit comments

Comments
 (0)