mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Bump version
This commit is contained in:
parent
3da419c434
commit
d9419ba690
7 changed files with 41 additions and 25 deletions
|
|
@ -1 +1 @@
|
|||
7.9
|
||||
7.10
|
||||
|
|
|
|||
37
CHANGES.rst
37
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 <https://github.com/aiogram/aiogram/issues/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 <https://github.com/aiogram/aiogram/issues/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 <https://github.com/aiogram/aiogram/issues/1543>`_
|
||||
|
||||
|
||||
3.12.0 (2024-08-16)
|
||||
====================
|
||||
|
||||
|
|
|
|||
|
|
@ -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`.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -52,7 +52,7 @@ Features
|
|||
- Asynchronous (`asyncio docs <https://docs.python.org/3/library/asyncio.html>`_, :pep:`492`)
|
||||
- Has type hints (:pep:`484`) and can be used with `mypy <http://mypy-lang.org/>`_
|
||||
- Supports `PyPy <https://www.pypy.org/>`_
|
||||
- Supports `Telegram Bot API 7.9 <https://core.telegram.org/bots/api>`_ and gets fast updates to the latest versions of the Bot API
|
||||
- Supports `Telegram Bot API 7.10 <https://core.telegram.org/bots/api>`_ and gets fast updates to the latest versions of the Bot API
|
||||
- Telegram Bot API integration code was `autogenerated <https://github.com/aiogram/tg-codegen>`_ and can be easily re-generated when API gets updated
|
||||
- Updates router (Blueprints)
|
||||
- Has Finite State Machine
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = "3.12.0"
|
||||
__api_version__ = "7.9"
|
||||
__version__ = "3.13.0"
|
||||
__api_version__ = "7.10"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue