Bump version

This commit is contained in:
JRoot Junior 2024-08-09 20:16:28 +03:00
parent cf3a6c3d59
commit 60f93b3b46
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
6 changed files with 36 additions and 14 deletions

View file

@ -16,6 +16,41 @@ Changelog
.. towncrier release notes start
3.11.0 (2024-08-09)
====================
Features
--------
- Added full support of `Bot API 7.8 <https://core.telegram.org/bots/api-changelog#july-31-2024>`_
- 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 <https://github.com/aiogram/aiogram/issues/1551>`_
Bugfixes
--------
- Fixed URL path in the "Open" button at the "demo/sendMessage" endpoint in the web_app example.
`#1546 <https://github.com/aiogram/aiogram/issues/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 <https://github.com/aiogram/aiogram/issues/1538>`_
- Added `aiohttp v3.10 <https://github.com/aio-libs/aiohttp/releases/tag/v3.10.0>`_ ` support.
`#1548 <https://github.com/aiogram/aiogram/issues/1548>`_
3.10.0 (2024-07-07)
====================

View file

@ -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.

View file

@ -1 +0,0 @@
Fixed URL path in the "Open" button at the "demo/sendMessage" endpoint in the web_app example.

View file

@ -1 +0,0 @@
Added `aiohttp v3.10 <https://github.com/aio-libs/aiohttp/releases/tag/v3.10.0>`_ ` support.

View file

@ -1,8 +0,0 @@
Added full support of `Bot API 7.8 <https://core.telegram.org/bots/api-changelog#july-31-2024>`_
- 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.

View file

@ -1,2 +1,2 @@
__version__ = "3.10.0"
__version__ = "3.11.0"
__api_version__ = "7.8"