mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Bump version
This commit is contained in:
parent
cfd2a9968e
commit
40cb222314
11 changed files with 36 additions and 13 deletions
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
|
@ -1,2 +1,2 @@
|
||||||
github: [JRootJunior]
|
|
||||||
open_collective: aiogram
|
open_collective: aiogram
|
||||||
|
patreon: aiogram
|
||||||
|
|
|
||||||
31
CHANGES.rst
31
CHANGES.rst
|
|
@ -14,6 +14,37 @@ Changelog
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. 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)
|
3.0.0a14 (2021-08-17)
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Disable ContentType filter by default
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Moved update type detection from Dispatcher to Update object
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder`
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Updated **pre-commit** config
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Reworked **handlers_in_use** util. Function moved to Router as method **.resolve_used_update_types()**
|
|
||||||
5
Makefile
5
Makefile
|
|
@ -47,8 +47,8 @@ help:
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
$(base_python) -m pip install --user -U poetry
|
|
||||||
poetry install
|
poetry install
|
||||||
|
$(py) pre-commit install
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
|
|
@ -58,9 +58,8 @@ clean:
|
||||||
rm -f `find . -type f -name '.*~' `
|
rm -f `find . -type f -name '.*~' `
|
||||||
rm -rf `find . -name .pytest_cache`
|
rm -rf `find . -name .pytest_cache`
|
||||||
rm -rf *.egg-info
|
rm -rf *.egg-info
|
||||||
rm -f .coverage
|
|
||||||
rm -f report.html
|
rm -f report.html
|
||||||
rm -f .coverage.*
|
rm -f .coverage*
|
||||||
rm -rf {build,dist,site,.cache,.mypy_cache,reports}
|
rm -rf {build,dist,site,.cache,.mypy_cache,reports}
|
||||||
|
|
||||||
# =================================================================================================
|
# =================================================================================================
|
||||||
|
|
|
||||||
|
|
@ -37,5 +37,5 @@ __all__ = (
|
||||||
"md",
|
"md",
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = "3.0.0a14"
|
__version__ = "3.0.0a15"
|
||||||
__api_version__ = "5.3"
|
__api_version__ = "5.3"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "aiogram"
|
name = "aiogram"
|
||||||
version = "3.0.0-alpha.14"
|
version = "3.0.0-alpha.15"
|
||||||
description = "Modern and fully asynchronous framework for Telegram Bot API"
|
description = "Modern and fully asynchronous framework for Telegram Bot API"
|
||||||
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
|
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue