From 1d5405ab43fc27958f348a86a839c4b65cdc7211 Mon Sep 17 00:00:00 2001 From: JRoot Junior Date: Sat, 21 Dec 2024 23:50:49 +0200 Subject: [PATCH] Bump version --- CHANGES.rst | 32 ++++++++++++++++++++++++++++++++ CHANGES/1607.misc.rst | 1 - CHANGES/1608.misc.rst | 1 - CHANGES/1615.misc.rst | 1 - CHANGES/1616.bugfix.rst | 1 - CHANGES/1617.feature.rst | 5 ----- aiogram/__meta__.py | 2 +- 7 files changed, 33 insertions(+), 10 deletions(-) delete mode 100644 CHANGES/1607.misc.rst delete mode 100644 CHANGES/1608.misc.rst delete mode 100644 CHANGES/1615.misc.rst delete mode 100644 CHANGES/1616.bugfix.rst delete mode 100644 CHANGES/1617.feature.rst diff --git a/CHANGES.rst b/CHANGES.rst index 045fb873..d17cb321 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,38 @@ Changelog .. towncrier release notes start +3.13.1 (2024-12-21) +==================== + +Features +-------- + +- Added full support of `Bot API 8.1`_: + + - Added the field :code:`nanostar_amount` to the class :class:`aiogram.types.star_transaction.StarTransaction`. + - Added the class :class:`aiogram.types.transaction_partner_affiliate_program.TransactionPartnerAffiliateProgram` for transactions pertaining to incoming affiliate commissions. + - Added the class :class:`aiogram.types.affiliate_info.AffiliateInfo` and the field :code:`affiliate` to the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`, allowing bots to identify the relevant affiliate in transactions with an affiliate commission. + `#1617 `_ + + +Bugfixes +-------- + +- Corrected the exception text of `aiogram.methods.base.TelegramMethod.__await__` method. + `#1616 `_ + + +Misc +---- + +- Increased max :code:`pydantic` version support from “<2.10” to “<2.11” + `#1607 `_ +- Fixed closing tag for :code:`tg-emoji` in the :class:`aiogram.utils.text_decoration.HtmlDecoration`: use the same constant as for tag opening + `#1608 `_ +- Increased max :code:`aiohttp` version support from “<3.11” to “<3.12” + `#1615 `_ + + 3.15.0 (2024-11-17) ==================== diff --git a/CHANGES/1607.misc.rst b/CHANGES/1607.misc.rst deleted file mode 100644 index f9095214..00000000 --- a/CHANGES/1607.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Increased max :code:`pydantic` version support from “<2.10” to “<2.11” diff --git a/CHANGES/1608.misc.rst b/CHANGES/1608.misc.rst deleted file mode 100644 index 2641bb8c..00000000 --- a/CHANGES/1608.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed closing tag for :code:`tg-emoji` in the :class:`aiogram.utils.text_decoration.HtmlDecoration`: use the same constant as for tag opening diff --git a/CHANGES/1615.misc.rst b/CHANGES/1615.misc.rst deleted file mode 100644 index 34845b60..00000000 --- a/CHANGES/1615.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Increased max :code:`aiohttp` version support from “<3.11” to “<3.12” diff --git a/CHANGES/1616.bugfix.rst b/CHANGES/1616.bugfix.rst deleted file mode 100644 index 3798d5da..00000000 --- a/CHANGES/1616.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Corrected the exception text of `aiogram.methods.base.TelegramMethod.__await__` method. diff --git a/CHANGES/1617.feature.rst b/CHANGES/1617.feature.rst deleted file mode 100644 index a72a8b32..00000000 --- a/CHANGES/1617.feature.rst +++ /dev/null @@ -1,5 +0,0 @@ -Added full support of `Bot API 8.1`_: - -- Added the field :code:`nanostar_amount` to the class :class:`aiogram.types.star_transaction.StarTransaction`. -- Added the class :class:`aiogram.types.transaction_partner_affiliate_program.TransactionPartnerAffiliateProgram` for transactions pertaining to incoming affiliate commissions. -- Added the class :class:`aiogram.types.affiliate_info.AffiliateInfo` and the field :code:`affiliate` to the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`, allowing bots to identify the relevant affiliate in transactions with an affiliate commission. diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index c0c3a8a7..ec78d40f 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.15.0" +__version__ = "3.16.0" __api_version__ = "8.1"