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
e4046095d7
commit
481aec2144
9 changed files with 35 additions and 16 deletions
33
CHANGES.rst
33
CHANGES.rst
|
|
@ -14,6 +14,39 @@ Changelog
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. 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 <https://github.com/aiogram/aiogram/issues/698>`_
|
||||||
|
- Implemented I18n & L10n support
|
||||||
|
`#701 <https://github.com/aiogram/aiogram/issues/701>`_
|
||||||
|
|
||||||
|
|
||||||
|
Misc
|
||||||
|
----
|
||||||
|
|
||||||
|
- Covered by tests and docs KeyboardBuilder util
|
||||||
|
`#699 <https://github.com/aiogram/aiogram/issues/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 <https://github.com/aiogram/aiogram/issues/700>`_
|
||||||
|
- Replaced all :code:`pragma: no cover` marks via global :code:`.coveragerc` config
|
||||||
|
`#702 <https://github.com/aiogram/aiogram/issues/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 <https://github.com/aiogram/aiogram/issues/703>`_
|
||||||
|
|
||||||
|
|
||||||
3.0.0a15 (2021-09-10)
|
3.0.0a15 (2021-09-10)
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Covered by tests and docs KeyboardBuilder util
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Implemented I18n & L10n support
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Replaced all :code:`pragma: no cover` marks via global :code:`.coveragerc` config
|
|
||||||
|
|
@ -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`
|
|
||||||
|
|
@ -37,5 +37,5 @@ __all__ = (
|
||||||
"md",
|
"md",
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = "3.0.0a15"
|
__version__ = "3.0.0a16"
|
||||||
__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.15"
|
version = "3.0.0-alpha.16"
|
||||||
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