diff --git a/.apiversion b/.apiversion index 38abeb20..25b629b0 100644 --- a/.apiversion +++ b/.apiversion @@ -1 +1 @@ -7.6 +7.7 diff --git a/CHANGES.rst b/CHANGES.rst index eb4a891d..9b8c0478 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,22 @@ Changelog .. towncrier release notes start +3.10.0 (2024-07-07) +==================== + +Features +-------- + +- Added full support of `Bot API 7.7 `_ + + - Added the class :class:`aiogram.types.refunded_payment.RefundedPayment`, + containing information about a refunded payment. + - Added the field :code:`refunded_payment` to the class + :class:`aiogram.types.message.Message`, + describing a service message about a refunded payment. + `#1536 `_ + + 3.9.0 (2024-07-06) =================== diff --git a/CHANGES/1536.feature.rst b/CHANGES/1536.feature.rst deleted file mode 100644 index 1d863c25..00000000 --- a/CHANGES/1536.feature.rst +++ /dev/null @@ -1,7 +0,0 @@ -Added full support of `Bot API 7.7 `_ - -- Added the class :class:`aiogram.types.refunded_payment.RefundedPayment`, - containing information about a refunded payment. -- Added the field :code:`refunded_payment` to the class - :class:`aiogram.types.message.Message`, - describing a service message about a refunded payment. diff --git a/Makefile b/Makefile index 41eaba49..d08d0742 100644 --- a/Makefile +++ b/Makefile @@ -102,6 +102,7 @@ build: clean .PHONY: bump bump: hatch version $(args) + cat .butcher/schema/schema.json | jq '.api.version' -r > .apiversion python scripts/bump_versions.py .PHONY: towncrier-build diff --git a/README.rst b/README.rst index 71c9e92a..dad0b5e2 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Features - Asynchronous (`asyncio docs `_, :pep:`492`) - Has type hints (:pep:`484`) and can be used with `mypy `_ - Supports `PyPy `_ -- Supports `Telegram Bot API 7.6 `_ and gets fast updates to the latest versions of the Bot API +- Supports `Telegram Bot API 7.7 `_ and gets fast updates to the latest versions of the Bot API - Telegram Bot API integration code was `autogenerated `_ and can be easily re-generated when API gets updated - Updates router (Blueprints) - Has Finite State Machine diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index 2463588f..869c5c7b 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.9.0" -__api_version__ = "7.6" +__version__ = "3.10.0" +__api_version__ = "7.7"