diff --git a/CHANGES.rst b/CHANGES.rst index 9b8c0478..627c7f84 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,41 @@ Changelog .. towncrier release notes start +3.11.0 (2024-08-09) +==================== + +Features +-------- + +- Added full support of `Bot API 7.8 `_ + + - Added the field :code:`has_main_web_app` to the class :class:`aiogram.types.user.User`, + which is returned in the response to :class:`aiogram.methods.get_me.GetMe`. + - Added the parameter :code:`business_connection_id` to the methods + :class:`aiogram.methods.pin_chat_message.PinChatMessage` + and :class:`aiogram.methods.unpin_chat_message.UnpinChatMessage`, + allowing bots to manage pinned messages on behalf of a business account. + `#1551 `_ + + +Bugfixes +-------- + +- Fixed URL path in the "Open" button at the "demo/sendMessage" endpoint in the web_app example. + `#1546 `_ + + +Misc +---- + +- Added method :func:`aiogram.types.message.Message.as_reply_parameters`. + Replaced usage of the argument :code:`reply_to_message_id` with :code:`reply_parameters` + in all Message reply methods. + `#1538 `_ +- Added `aiohttp v3.10 `_ ` support. + `#1548 `_ + + 3.10.0 (2024-07-07) ==================== diff --git a/CHANGES/1538.misc.rst b/CHANGES/1538.misc.rst deleted file mode 100644 index ef08ed8f..00000000 --- a/CHANGES/1538.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -Added method :func:`aiogram.types.message.Message.as_reply_parameters`. -Replaced usage of the argument :code:`reply_to_message_id` with :code:`reply_parameters` -in all Message reply methods. diff --git a/CHANGES/1546.bugfix.rst b/CHANGES/1546.bugfix.rst deleted file mode 100644 index a98d5904..00000000 --- a/CHANGES/1546.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed URL path in the "Open" button at the "demo/sendMessage" endpoint in the web_app example. diff --git a/CHANGES/1548.misc.rst b/CHANGES/1548.misc.rst deleted file mode 100644 index 5fedb2b2..00000000 --- a/CHANGES/1548.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Added `aiohttp v3.10 `_ ` support. diff --git a/CHANGES/1551.feature.rst b/CHANGES/1551.feature.rst deleted file mode 100644 index a7731f32..00000000 --- a/CHANGES/1551.feature.rst +++ /dev/null @@ -1,8 +0,0 @@ -Added full support of `Bot API 7.8 `_ - -- Added the field :code:`has_main_web_app` to the class :class:`aiogram.types.user.User`, - which is returned in the response to :class:`aiogram.methods.get_me.GetMe`. -- Added the parameter :code:`business_connection_id` to the methods - :class:`aiogram.methods.pin_chat_message.PinChatMessage` - and :class:`aiogram.methods.unpin_chat_message.UnpinChatMessage`, - allowing bots to manage pinned messages on behalf of a business account. diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index 607a9731..cabe9dd4 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.10.0" +__version__ = "3.11.0" __api_version__ = "7.8"