Bump version

This commit is contained in:
Alex Root Junior 2021-09-10 00:02:53 +03:00
parent cfd2a9968e
commit 40cb222314
11 changed files with 36 additions and 13 deletions

2
.github/FUNDING.yml vendored
View file

@ -1,2 +1,2 @@
github: [JRootJunior]
open_collective: aiogram
patreon: aiogram

View file

@ -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 <https://github.com/aiogram/aiogram/issues/666>`_
Bugfixes
--------
- Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder`
`#674 <https://github.com/aiogram/aiogram/issues/674>`_
Misc
----
- Disable ContentType filter by default
`#668 <https://github.com/aiogram/aiogram/issues/668>`_
- Moved update type detection from Dispatcher to Update object
`#669 <https://github.com/aiogram/aiogram/issues/669>`_
- Updated **pre-commit** config
`#681 <https://github.com/aiogram/aiogram/issues/681>`_
- Reworked **handlers_in_use** util. Function moved to Router as method **.resolve_used_update_types()**
`#682 <https://github.com/aiogram/aiogram/issues/682>`_
3.0.0a14 (2021-08-17)
======================

View file

@ -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.

View file

@ -1 +0,0 @@
Disable ContentType filter by default

View file

@ -1 +0,0 @@
Moved update type detection from Dispatcher to Update object

View file

@ -1 +0,0 @@
Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder`

View file

@ -1 +0,0 @@
Updated **pre-commit** config

View file

@ -1 +0,0 @@
Reworked **handlers_in_use** util. Function moved to Router as method **.resolve_used_update_types()**

View file

@ -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}
# =================================================================================================

View file

@ -37,5 +37,5 @@ __all__ = (
"md",
)
__version__ = "3.0.0a14"
__version__ = "3.0.0a15"
__api_version__ = "5.3"

View file

@ -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 <jroot.junior@gmail.com>"]
license = "MIT"