diff --git a/.apiversion b/.apiversion index fbf1779b..a7ab6c29 100644 --- a/.apiversion +++ b/.apiversion @@ -1 +1 @@ -7.9 +7.10 diff --git a/CHANGES.rst b/CHANGES.rst index de7075f6..f3da8415 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,43 @@ Changelog .. towncrier release notes start +3.13.0 (2024-09-08) +==================== + +Features +-------- + +- - Added updates about purchased paid media, represented by the class + :class:`aiogram.types.paid_media_purchased.PaidMediaPurchased` + and the field :code:`purchased_paid_media` in the class + :class:`aiogram.types.update.Update`. + - Added the ability to specify a payload in + :class:`aiogram.methods.send_paid_media.SendPaidMedia` that is received back by the bot in + :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser` + and :code:`purchased_paid_media` updates. + - Added the field :code:`prize_star_count` to the classes + :class:`aiogram.types.giveaway_created.GiveawayCreated`, + :class:`aiogram.types.giveaway.Giveaway`, + :class:`aiogram.types.giveaway_winners.GiveawayWinners` + and :class:`aiogram.types.chat_boost_source_giveaway.ChatBoostSourceGiveaway`. + - Added the field :code:`is_star_giveaway` to the class + :class:`aiogram.types.giveaway_completed.GiveawayCompleted`. + `#1510 `_ +- Added missing method aliases such as `.answer()`, `.reply()`, and others to `InaccessibleMessage`. + This change ensures consistency and improves usability by aligning the functionality of `InaccessibleMessage` with the `Message` type. + `#1574 `_ + + +Bugfixes +-------- + +- Fixed link preview options to use global defaults in various types and methods + to use global defaults for `link_preview_options`. + This change ensures consistency and enhances flexibility in handling link preview options + across different components. + `#1543 `_ + + 3.12.0 (2024-08-16) ==================== diff --git a/CHANGES/1510.feature.rst b/CHANGES/1510.feature.rst deleted file mode 100644 index 17aef064..00000000 --- a/CHANGES/1510.feature.rst +++ /dev/null @@ -1,15 +0,0 @@ -- Added updates about purchased paid media, represented by the class - :class:`aiogram.types.paid_media_purchased.PaidMediaPurchased` - and the field :code:`purchased_paid_media` in the class - :class:`aiogram.types.update.Update`. -- Added the ability to specify a payload in - :class:`aiogram.methods.send_paid_media.SendPaidMedia` that is received back by the bot in - :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser` - and :code:`purchased_paid_media` updates. -- Added the field :code:`prize_star_count` to the classes - :class:`aiogram.types.giveaway_created.GiveawayCreated`, - :class:`aiogram.types.giveaway.Giveaway`, - :class:`aiogram.types.giveaway_winners.GiveawayWinners` - and :class:`aiogram.types.chat_boost_source_giveaway.ChatBoostSourceGiveaway`. -- Added the field :code:`is_star_giveaway` to the class - :class:`aiogram.types.giveaway_completed.GiveawayCompleted`. diff --git a/CHANGES/1543.bugfix.rst b/CHANGES/1543.bugfix.rst deleted file mode 100644 index f4ddcefb..00000000 --- a/CHANGES/1543.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fixed link preview options to use global defaults in various types and methods -to use global defaults for `link_preview_options`. -This change ensures consistency and enhances flexibility in handling link preview options -across different components. diff --git a/CHANGES/1574.feature.rst b/CHANGES/1574.feature.rst deleted file mode 100644 index ff12a6f6..00000000 --- a/CHANGES/1574.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -Added missing method aliases such as `.answer()`, `.reply()`, and others to `InaccessibleMessage`. -This change ensures consistency and improves usability by aligning the functionality of `InaccessibleMessage` with the `Message` type. \ No newline at end of file diff --git a/README.rst b/README.rst index 87a88e6f..bd82af42 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Features - Asynchronous (`asyncio docs `_, :pep:`492`) - Has type hints (:pep:`484`) and can be used with `mypy `_ - Supports `PyPy `_ -- Supports `Telegram Bot API 7.9 `_ and gets fast updates to the latest versions of the Bot API +- Supports `Telegram Bot API 7.10 `_ and gets fast updates to the latest versions of the Bot API - Telegram Bot API integration code was `autogenerated `_ and can be easily re-generated when API gets updated - Updates router (Blueprints) - Has Finite State Machine diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index c36e738e..7f64d57e 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.12.0" -__api_version__ = "7.9" +__version__ = "3.13.0" +__api_version__ = "7.10"