From cbee9acf493c4bbf90d37c99e7cccd7adc55c0c0 Mon Sep 17 00:00:00 2001 From: playpauseandstop <21325+playpauseandstop@users.noreply.github.com> Date: Fri, 16 Aug 2024 12:27:08 +0000 Subject: [PATCH] chore: 3.3.0 Release Features: --------- - Ensure support of latest aiohttp, attrs, environ-config, and pyrsistent versions (#412) - Use Python 3.12.5 as dev version (#413) - Ensure Python 3.13 support (#415) Other: ------ - (**deps**) bump typing-extensions from 4.5.0 to 4.6.2 (#367) - (**deps**) bump cryptography from 39.0.1 to 41.0.0 (#368) - (**deps-dev**) bump hiredis from 2.2.2 to 2.2.3 (#366) - (**deps-dev**) bump pytest-cov from 4.0.0 to 4.1.0 (#365) - Monthly maintenance (Aug 2024) (#395) --- CHANGELOG.rst | 17 +++++++++++++++++ pyproject.toml | 2 +- src/rororo/__init__.py | 2 +- tests/rororo/openapi.json | 2 +- tests/rororo/openapi.yaml | 2 +- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2610f39..ee623a4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,20 @@ +3.3.0 (2024-08-16) +================== + +**Features:** + +- Ensure support of latest aiohttp, attrs, environ-config, and pyrsistent versions (#412) +- Use Python 3.12.5 as dev version (#413) +- Ensure Python 3.13 support (#415) + +**Other:** + +- (**deps**) bump typing-extensions from 4.5.0 to 4.6.2 (#367) +- (**deps**) bump cryptography from 39.0.1 to 41.0.0 (#368) +- (**deps-dev**) bump hiredis from 2.2.2 to 2.2.3 (#366) +- (**deps-dev**) bump pytest-cov from 4.0.0 to 4.1.0 (#365) +- Monthly maintenance (Aug 2024) (#395) + 3.2.0 (2023-05-29) ================== diff --git a/pyproject.toml b/pyproject.toml index 3dde3b6..c699f38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,7 +83,7 @@ ignore_missing_imports = true [tool.poetry] name = "rororo" -version = "3.2.0" +version = "3.3.0" description = "aiohttp.web OpenAPI 3 schema first server applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause" diff --git a/src/rororo/__init__.py b/src/rororo/__init__.py index 3116edc..4538ded 100644 --- a/src/rororo/__init__.py +++ b/src/rororo/__init__.py @@ -43,4 +43,4 @@ __author__ = "Igor Davydenko" __license__ = "BSD-3-Clause" -__version__ = "3.2.0" +__version__ = "3.3.0" diff --git a/tests/rororo/openapi.json b/tests/rororo/openapi.json index c1ea2b2..0f76f76 100644 --- a/tests/rororo/openapi.json +++ b/tests/rororo/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "rororo", - "version": "3.2.0", + "version": "3.3.0", "contact": { "name": "Igor Davydenko (developer)", "url": "https://igordavydenko.com", diff --git a/tests/rororo/openapi.yaml b/tests/rororo/openapi.yaml index db5e94e..1b9f33a 100644 --- a/tests/rororo/openapi.yaml +++ b/tests/rororo/openapi.yaml @@ -2,7 +2,7 @@ openapi: "3.0.3" info: title: "rororo" - version: "3.2.0" + version: "3.3.0" contact: name: "Igor Davydenko (developer)" url: "https://igordavydenko.com"