From 481aec214453199ba8e5f53a9163bd81cb090393 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Wed, 22 Sep 2021 02:00:45 +0300 Subject: [PATCH] Bump version --- CHANGES.rst | 33 +++++++++++++++++++++++++++++++++ CHANGES/698.feature | 3 --- CHANGES/699.misc | 1 - CHANGES/700.misc | 4 ---- CHANGES/701.feature | 1 - CHANGES/702.misc | 1 - CHANGES/703.misc | 4 ---- aiogram/__init__.py | 2 +- pyproject.toml | 2 +- 9 files changed, 35 insertions(+), 16 deletions(-) delete mode 100644 CHANGES/698.feature delete mode 100644 CHANGES/699.misc delete mode 100644 CHANGES/700.misc delete mode 100644 CHANGES/701.feature delete mode 100644 CHANGES/702.misc delete mode 100644 CHANGES/703.misc diff --git a/CHANGES.rst b/CHANGES.rst index 62559b2c..34e72736 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,39 @@ Changelog .. towncrier release notes start +3.0.0a16 (2021-09-22) +====================== + +Features +-------- + +- Added support of local Bot API server files downloading + + When Local API is enabled files can be downloaded via `bot.download`/`bot.download_file` methods. + `#698 `_ +- Implemented I18n & L10n support + `#701 `_ + + +Misc +---- + +- Covered by tests and docs KeyboardBuilder util + `#699 `_ +- **Breaking!!!**. Refactored and renamed exceptions. + + - Exceptions module was moved from :code:`aiogram.utils.exceptions` to :code:`aiogram.exceptions` + - Added prefix `Telegram` for all error classes + `#700 `_ +- Replaced all :code:`pragma: no cover` marks via global :code:`.coveragerc` config + `#702 `_ +- Updated dependencies. + + **Breaking for framework developers** + Now all optional dependencies should be installed as extra: `poetry install -E fast -E redis -E proxy -E i18n -E docs` + `#703 `_ + + 3.0.0a15 (2021-09-10) ====================== diff --git a/CHANGES/698.feature b/CHANGES/698.feature deleted file mode 100644 index 1fb43042..00000000 --- a/CHANGES/698.feature +++ /dev/null @@ -1,3 +0,0 @@ -Added support of local Bot API server files downloading - -When Local API is enabled files can be downloaded via `bot.download`/`bot.download_file` methods. diff --git a/CHANGES/699.misc b/CHANGES/699.misc deleted file mode 100644 index 6721c9f1..00000000 --- a/CHANGES/699.misc +++ /dev/null @@ -1 +0,0 @@ -Covered by tests and docs KeyboardBuilder util diff --git a/CHANGES/700.misc b/CHANGES/700.misc deleted file mode 100644 index 0cafaf16..00000000 --- a/CHANGES/700.misc +++ /dev/null @@ -1,4 +0,0 @@ -**Breaking!!!**. Refactored and renamed exceptions. - -- Exceptions module was moved from :code:`aiogram.utils.exceptions` to :code:`aiogram.exceptions` -- Added prefix `Telegram` for all error classes diff --git a/CHANGES/701.feature b/CHANGES/701.feature deleted file mode 100644 index 4e7e3224..00000000 --- a/CHANGES/701.feature +++ /dev/null @@ -1 +0,0 @@ -Implemented I18n & L10n support diff --git a/CHANGES/702.misc b/CHANGES/702.misc deleted file mode 100644 index 23d613f7..00000000 --- a/CHANGES/702.misc +++ /dev/null @@ -1 +0,0 @@ -Replaced all :code:`pragma: no cover` marks via global :code:`.coveragerc` config diff --git a/CHANGES/703.misc b/CHANGES/703.misc deleted file mode 100644 index 0d269d99..00000000 --- a/CHANGES/703.misc +++ /dev/null @@ -1,4 +0,0 @@ -Updated dependencies. - -**Breaking for framework developers** -Now all optional dependencies should be installed as extra: `poetry install -E fast -E redis -E proxy -E i18n -E docs` diff --git a/aiogram/__init__.py b/aiogram/__init__.py index 867cc1b0..51c84ac8 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -37,5 +37,5 @@ __all__ = ( "md", ) -__version__ = "3.0.0a15" +__version__ = "3.0.0a16" __api_version__ = "5.3" diff --git a/pyproject.toml b/pyproject.toml index d7546e16..5e132bfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiogram" -version = "3.0.0-alpha.15" +version = "3.0.0-alpha.16" description = "Modern and fully asynchronous framework for Telegram Bot API" authors = ["Alex Root Junior "] license = "MIT"