From 40cb222314d48651d3903e800523e205827a5097 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Fri, 10 Sep 2021 00:02:53 +0300 Subject: [PATCH] Bump version --- .github/FUNDING.yml | 2 +- CHANGES.rst | 31 +++++++++++++++++++++++++++++++ CHANGES/666.feature | 2 -- CHANGES/668.misc | 1 - CHANGES/669.misc | 1 - CHANGES/674.bugfix | 1 - CHANGES/681.misc | 1 - CHANGES/682.misc | 1 - Makefile | 5 ++--- aiogram/__init__.py | 2 +- pyproject.toml | 2 +- 11 files changed, 36 insertions(+), 13 deletions(-) delete mode 100644 CHANGES/666.feature delete mode 100644 CHANGES/668.misc delete mode 100644 CHANGES/669.misc delete mode 100644 CHANGES/674.bugfix delete mode 100644 CHANGES/681.misc delete mode 100644 CHANGES/682.misc diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 82ea7257..d643b3f0 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,2 @@ -github: [JRootJunior] open_collective: aiogram +patreon: aiogram diff --git a/CHANGES.rst b/CHANGES.rst index 2fb857c4..62559b2c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,37 @@ Changelog .. towncrier release notes start +3.0.0a15 (2021-09-10) +====================== + +Features +-------- + +- Ability to iterate over all states in StatesGroup. + Aiogram already had in check for states group so this is relative feature. + `#666 `_ + + +Bugfixes +-------- + +- Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder` + `#674 `_ + + +Misc +---- + +- Disable ContentType filter by default + `#668 `_ +- Moved update type detection from Dispatcher to Update object + `#669 `_ +- Updated **pre-commit** config + `#681 `_ +- Reworked **handlers_in_use** util. Function moved to Router as method **.resolve_used_update_types()** + `#682 `_ + + 3.0.0a14 (2021-08-17) ====================== diff --git a/CHANGES/666.feature b/CHANGES/666.feature deleted file mode 100644 index 35a6572e..00000000 --- a/CHANGES/666.feature +++ /dev/null @@ -1,2 +0,0 @@ -Ability to iterate over all states in StatesGroup. -Aiogram already had in check for states group so this is relative feature. diff --git a/CHANGES/668.misc b/CHANGES/668.misc deleted file mode 100644 index 22fc86e9..00000000 --- a/CHANGES/668.misc +++ /dev/null @@ -1 +0,0 @@ -Disable ContentType filter by default diff --git a/CHANGES/669.misc b/CHANGES/669.misc deleted file mode 100644 index 2410f4c1..00000000 --- a/CHANGES/669.misc +++ /dev/null @@ -1 +0,0 @@ -Moved update type detection from Dispatcher to Update object diff --git a/CHANGES/674.bugfix b/CHANGES/674.bugfix deleted file mode 100644 index 61d3a816..00000000 --- a/CHANGES/674.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder` diff --git a/CHANGES/681.misc b/CHANGES/681.misc deleted file mode 100644 index ecfc02a1..00000000 --- a/CHANGES/681.misc +++ /dev/null @@ -1 +0,0 @@ -Updated **pre-commit** config diff --git a/CHANGES/682.misc b/CHANGES/682.misc deleted file mode 100644 index a1a18c67..00000000 --- a/CHANGES/682.misc +++ /dev/null @@ -1 +0,0 @@ -Reworked **handlers_in_use** util. Function moved to Router as method **.resolve_used_update_types()** diff --git a/Makefile b/Makefile index 3bac20a2..f1148de8 100644 --- a/Makefile +++ b/Makefile @@ -47,8 +47,8 @@ help: .PHONY: install install: - $(base_python) -m pip install --user -U poetry poetry install + $(py) pre-commit install .PHONY: clean clean: @@ -58,9 +58,8 @@ clean: rm -f `find . -type f -name '.*~' ` rm -rf `find . -name .pytest_cache` rm -rf *.egg-info - rm -f .coverage rm -f report.html - rm -f .coverage.* + rm -f .coverage* rm -rf {build,dist,site,.cache,.mypy_cache,reports} # ================================================================================================= diff --git a/aiogram/__init__.py b/aiogram/__init__.py index 737e8185..867cc1b0 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -37,5 +37,5 @@ __all__ = ( "md", ) -__version__ = "3.0.0a14" +__version__ = "3.0.0a15" __api_version__ = "5.3" diff --git a/pyproject.toml b/pyproject.toml index e6ec4d32..7195b488 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiogram" -version = "3.0.0-alpha.14" +version = "3.0.0-alpha.15" description = "Modern and fully asynchronous framework for Telegram Bot API" authors = ["Alex Root Junior "] license = "MIT"