Bump version

This commit is contained in:
JRoot Junior 2024-08-16 00:46:41 +03:00
parent c3a08664d3
commit 6aba60155c
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
6 changed files with 40 additions and 23 deletions

View file

@ -16,6 +16,45 @@ Changelog
.. towncrier release notes start
3.12.0 (2024-08-16)
====================
Features
--------
- Added **message_thread_id** parameter to **message.get_url()**.
`#1451 <https://github.com/aiogram/aiogram/issues/1451>`_
- Added getting user from `chat_boost` with source `ChatBoostSourcePremium` in `UserContextMiddleware` for `EventContext`
`#1474 <https://github.com/aiogram/aiogram/issues/1474>`_
- Added full support of `Bot API 7.8 <https://core.telegram.org/bots/api-changelog#august-14-2024>`_
- Added the ability to send paid media to any chat.
- Added the parameter :code:`business_connection_id` to the method
:class:`aiogram.methods.send_paid_media.SendPaidMedia`,
allowing bots to send paid media on behalf of a business account.
- Added the field :code:`paid_media` to the class
:class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`
for transactions involving paid media.
- Added the method
:class:`aiogram.methods.create_chat_subscription_invite_link.CreateChatSubscriptionInviteLink`,
allowing bots to create subscription invite links.
- Added the method
:class:`aiogram.methods.edit_chat_subscription_invite_link.EditChatSubscriptionInviteLink`,
allowing bots to edit the name of subscription invite links.
- Added the field :code:`until_date` to the class
:class:`aiogram.types.chat_member_member.ChatMemberMember` for members with an active subscription.
- Added support for paid reactions and the class
:class:`aiogram.types.reaction_type_paid.ReactionTypePaid`.
`#1560 <https://github.com/aiogram/aiogram/issues/1560>`_
Misc
----
- Improved performance of StatesGroup
`#1507 <https://github.com/aiogram/aiogram/issues/1507>`_
3.11.0 (2024-08-09)
====================

View file

@ -1 +0,0 @@
Added **message_thread_id** parameter to **message.get_url()**.

View file

@ -1 +0,0 @@
Added getting user from `chat_boost` with source `ChatBoostSourcePremium` in `UserContextMiddleware` for `EventContext`

View file

@ -1 +0,0 @@
Improved performance of StatesGroup

View file

@ -1,19 +0,0 @@
Added full support of `Bot API 7.8 <https://core.telegram.org/bots/api-changelog#august-14-2024>`_
- Added the ability to send paid media to any chat.
- Added the parameter :code:`business_connection_id` to the method
:class:`aiogram.methods.send_paid_media.SendPaidMedia`,
allowing bots to send paid media on behalf of a business account.
- Added the field :code:`paid_media` to the class
:class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`
for transactions involving paid media.
- Added the method
:class:`aiogram.methods.create_chat_subscription_invite_link.CreateChatSubscriptionInviteLink`,
allowing bots to create subscription invite links.
- Added the method
:class:`aiogram.methods.edit_chat_subscription_invite_link.EditChatSubscriptionInviteLink`,
allowing bots to edit the name of subscription invite links.
- Added the field :code:`until_date` to the class
:class:`aiogram.types.chat_member_member.ChatMemberMember` for members with an active subscription.
- Added support for paid reactions and the class
:class:`aiogram.types.reaction_type_paid.ReactionTypePaid`.

View file

@ -1,2 +1,2 @@
__version__ = "3.11.0"
__version__ = "3.12.0"
__api_version__ = "7.9"