Skip to content

Commit 6b35b18

Browse files
chore: 3.0.1 Release (#296)
This release ensures dependency on `openapi-spec-validator<=0.4.0`, so now it is safe to run `poetry update` in projects, which depends on `rororo==3.0.1`. Previously, `poetry update` have been installed latest `openapi-spec-validator==0.5.1` and as side-effect introduce `ImportError: cannot import name 'default_handlers' from 'openapi_spec_validator'` to the project :( Other: ------ - Sync common project files (#291) - Update Python dev version to 3.10.8 (#293) - Enforce mypy no-implicit-optional setting (#294) - Introduce no-optional pre-commit hook (#295) Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com> Co-authored-by: Igor Davydenko <iam@igordavydenko.com>
1 parent 6948511 commit 6b35b18

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
3.0.1 (2022-10-23)
2+
==================
3+
4+
This release ensures dependency on ``openapi-spec-validator<=0.4.0``, so now it is safe to
5+
run ``poetry update`` in projects, which depends on ``rororo==3.0.1``. Previously,
6+
``poetry update`` have been installed latest ``openapi-spec-validator==0.5.1`` and as side-effect
7+
introduce ``ImportError: cannot import name 'default_handlers' from 'openapi_spec_validator'``
8+
to such project :(
9+
10+
**Other:**
11+
12+
- Sync common project files (#291)
13+
- Update Python dev version to 3.10.8 (#293)
14+
- Enforce mypy no-implicit-optional setting (#294)
15+
- Introduce no-optional pre-commit hook (#295)
16+
117
3.0.0 (2022-08-09)
218
==================
319

pyproject.toml

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

9191
[tool.poetry]
9292
name = "rororo"
93-
version = "3.0.0"
93+
version = "3.0.1"
9494
description = "aiohttp.web OpenAPI 3 schema first server applications."
9595
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
9696
license = "BSD-3-Clause"

src/rororo/__init__.py

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

4444
__author__ = "Igor Davydenko"
4545
__license__ = "BSD-3-Clause"
46-
__version__ = "3.0.0"
46+
__version__ = "3.0.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": "3.0.0",
5+
"version": "3.0.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: "3.0.0"
5+
version: "3.0.1"
66
contact:
77
name: "Igor Davydenko (developer)"
88
url: "https://igordavydenko.com"

0 commit comments

Comments
 (0)