From 718910f5b54cf9672271eb28517ad5c24b51bb7b Mon Sep 17 00:00:00 2001 From: JRoot Junior Date: Wed, 18 Sep 2024 22:55:32 +0300 Subject: [PATCH] Release version 3.13.1 Add new version details to CHANGES.rst and update __meta__.py. Removed individual CHANGES/* feature and bugfix files, merging their content into the main CHANGES.rst. --- CHANGES.rst | 26 ++++++++++++++++++++++++++ CHANGES/1576.feature.rst | 1 - CHANGES/1577.feature.rst | 1 - CHANGES/1579.bugfix.rst | 1 - aiogram/__meta__.py | 2 +- 5 files changed, 27 insertions(+), 4 deletions(-) delete mode 100644 CHANGES/1576.feature.rst delete mode 100644 CHANGES/1577.feature.rst delete mode 100644 CHANGES/1579.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index f3da8415..96108896 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,32 @@ Changelog .. towncrier release notes start +3.13.1 (2024-09-18) +==================== + +.. warning:: + + **Python 3.8 End of Life**: Python 3.8 will reach its end of life (EOL) soon and will no longer + be supported by aiogram in the next releases (1-2 months ETA). + + Please upgrade to a newer version of Python to ensure compatibility and receive future updates. + +Misc +---- + +- Increase max pydantic version support "<2.9" -> "<2.10" (only For Python >=3.9) + `#1576 `_ +- Bump aiofiles version upper bound to <24.2 + `#1577 `_ + + +Bugfixes +-------- + +- Fixed `Default` object annotation resolution using `pydantic` + `#1579 `_ + + 3.13.0 (2024-09-08) ==================== diff --git a/CHANGES/1576.feature.rst b/CHANGES/1576.feature.rst deleted file mode 100644 index fa05fa57..00000000 --- a/CHANGES/1576.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Increase max pydantic version support "<2.9" -> "<2.10" diff --git a/CHANGES/1577.feature.rst b/CHANGES/1577.feature.rst deleted file mode 100644 index 7105d19c..00000000 --- a/CHANGES/1577.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Bump aiofiles version upper bound to <24.2 diff --git a/CHANGES/1579.bugfix.rst b/CHANGES/1579.bugfix.rst deleted file mode 100644 index 5a13f7fb..00000000 --- a/CHANGES/1579.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed `Default` object annotation resolution using `pydantic` diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index 7f64d57e..131af046 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.13.0" +__version__ = "3.13.1" __api_version__ = "7.10"