diff --git a/README.md b/README.md index b1ca77ae..5d0bae2e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![MIT License](https://img.shields.io/pypi/l/aiogram.svg?style=flat-square)](https://opensource.org/licenses/MIT) [![Supported python versions](https://img.shields.io/pypi/pyversions/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) -[![Telegram Bot API](https://img.shields.io/badge/Telegram%20Bot%20API-4.5-blue.svg?style=flat-square&logo=telegram)](https://core.telegram.org/bots/api) +[![Telegram Bot API](https://img.shields.io/badge/Telegram%20Bot%20API-4.6-blue.svg?style=flat-square&logo=telegram)](https://core.telegram.org/bots/api) [![PyPi Package Version](https://img.shields.io/pypi/v/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) [![PyPi status](https://img.shields.io/pypi/status/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) [![Downloads](https://img.shields.io/pypi/dm/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) diff --git a/aiogram/__init__.py b/aiogram/__init__.py index 8a568996..0bc46460 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -26,5 +26,5 @@ __all__ = ( "handler", ) -__version__ = "3.0.0a1" -__api_version__ = "4.5" +__version__ = "3.0.0a2" +__api_version__ = "4.6" diff --git a/docs/api/index.md b/docs/api/index.md index 2f4dc2d6..68f47da0 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,6 +1,6 @@ # Overview -**aiogram** now is fully support of [Telegram Bot API v4.5](https://core.telegram.org/bots/api) +**aiogram** now is fully support of [Telegram Bot API v4.6](https://core.telegram.org/bots/api) All API methods and types is fully autogenerated from Telegram Bot API docs by parser with code-generator. diff --git a/docs/index.md b/docs/index.md index 073f8d61..de65b474 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,7 +4,7 @@ Documentation for version 3.0 [WIP] [^1] [![MIT License](https://img.shields.io/pypi/l/aiogram.svg?style=flat-square)](https://opensource.org/licenses/MIT) [![Supported python versions](https://img.shields.io/pypi/pyversions/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) -[![Telegram Bot API](https://img.shields.io/badge/Telegram%20Bot%20API-4.5-blue.svg?style=flat-square&logo=telegram)](https://core.telegram.org/bots/api) +[![Telegram Bot API](https://img.shields.io/badge/Telegram%20Bot%20API-4.6-blue.svg?style=flat-square&logo=telegram)](https://core.telegram.org/bots/api) [![PyPi Package Version](https://img.shields.io/pypi/v/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) [![PyPi status](https://img.shields.io/pypi/status/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) [![Downloads](https://img.shields.io/pypi/dm/aiogram.svg?style=flat-square)](https://pypi.python.org/pypi/aiogram) @@ -16,11 +16,11 @@ Documentation for version 3.0 [WIP] [^1] ## Features - Asynchronous -- [Supports Telegram Bot API v4.5](api/index.md) +- [Supports Telegram Bot API v4.6](api/index.md) +- [Updates router](dispatcher/index.md) (Blueprints) - Finite State Machine -- [Replies into Webhook](https://core.telegram.org/bots/faq#how-can-i-make-requests-in-response-to-updates) - Middlewares -- Updates router (Blueprints) +- [Replies into Webhook](https://core.telegram.org/bots/faq#how-can-i-make-requests-in-response-to-updates) !!! note @@ -100,15 +100,16 @@ if __name__ == "__main__": - [ ] Filters - [ ] Utils - [x] Helper + - [x] Markdown/HTML - [ ] ... - [ ] CI/CD - [ ] Publish to PyPi on tag - [x] Build docs on push - - [ ] Code style - - [ ] Test with coverage on pull-request + - [x] Code style + - [x] Test with coverage on pull-request - [x] Test with coverage on push - - [ ] mypy on pull-request - - [ ] Flake8 on pull-request + - [x] mypy on pull-request + - [x] Flake8 on pull-request [^1]: work in progress diff --git a/pyproject.toml b/pyproject.toml index d04bdf02..4e9d7d09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiogram" -version = "3.0.0-alpha.1" +version = "3.0.0-alpha.2" description = "Modern and fully asynchronous framework for Telegram Bot API" authors = ["Alex Root Junior "] license = "MIT"