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"