diff --git a/CHANGES.rst b/CHANGES.rst index 1e811724..045fb873 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,40 @@ Changelog .. towncrier release notes start +3.15.0 (2024-11-17) +==================== + +Features +-------- + +- Added full support for `Bot API 8.0 `_ + + - Added the parameter :code:`subscription_period` to the method + :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` + to support the creation of links that are billed periodically. + - Added the parameter :code:`business_connection_id` to the method + :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` + to support the creation of invoice links on behalf of business accounts. + - Added the fields :code:`subscription_expiration_date`, + :code:`is_recurring` and :code:`is_first_recurring` to the class + :class:`aiogram.types.successful_payment.SuccessfulPayment`. + - Added the method :class:`aiogram.methods.edit_user_star_subscription.EditUserStarSubscription`. + - Added the field :code:`subscription_period` to the class + :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`. + - Added the method :class:`aiogram.methods.set_user_emoji_status.SetUserEmojiStatus`. + The user must allow the bot to manage their emoji status. + - Added the class :class:`aiogram.types.prepared_inline_message.PreparedInlineMessage` + and the method :class:`aiogram.methods.save_prepared_inline_message.SavePreparedInlineMessage`, + allowing bots to suggest users send a specific message from a Mini App via the method + :class:`aiogram.methods.share_message.ShareMessage`. + - Added the classes :class:`aiogram.types.gift.Gift` and :class:`aiogram.types.gifts.Gifts` + and the method :class:`aiogram.methods.get_available_gifts.GetAvailableGifts`, + allowing bots to get all gifts available for sending. + - Added the field :code:`gift` to the class + :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`. + `#1606 `_ + + 3.14.0 (2024-11-02) ==================== diff --git a/CHANGES/1606.feature.rst b/CHANGES/1606.feature.rst deleted file mode 100644 index 4bc1223e..00000000 --- a/CHANGES/1606.feature.rst +++ /dev/null @@ -1,25 +0,0 @@ -Added full support for `Bot API 8.0 `_ - -- Added the parameter :code:`subscription_period` to the method - :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` - to support the creation of links that are billed periodically. -- Added the parameter :code:`business_connection_id` to the method - :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` - to support the creation of invoice links on behalf of business accounts. -- Added the fields :code:`subscription_expiration_date`, - :code:`is_recurring` and :code:`is_first_recurring` to the class - :class:`aiogram.types.successful_payment.SuccessfulPayment`. -- Added the method :class:`aiogram.methods.edit_user_star_subscription.EditUserStarSubscription`. -- Added the field :code:`subscription_period` to the class - :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`. -- Added the method :class:`aiogram.methods.set_user_emoji_status.SetUserEmojiStatus`. - The user must allow the bot to manage their emoji status. -- Added the class :class:`aiogram.types.prepared_inline_message.PreparedInlineMessage` - and the method :class:`aiogram.methods.save_prepared_inline_message.SavePreparedInlineMessage`, - allowing bots to suggest users send a specific message from a Mini App via the method - :class:`aiogram.methods.share_message.ShareMessage`. -- Added the classes :class:`aiogram.types.gift.Gift` and :class:`aiogram.types.gifts.Gifts` - and the method :class:`aiogram.methods.get_available_gifts.GetAvailableGifts`, - allowing bots to get all gifts available for sending. -- Added the field :code:`gift` to the class - :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`. diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index 801b95eb..befb7cb6 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.14.0" +__version__ = "3.15.0" __api_version__ = "8.0"