Bump version to v20.0a4

This commit is contained in:
Hinrich Mahler 2022-08-27 13:25:57 +02:00
parent abfcf72a56
commit 2642ecc737
3 changed files with 16 additions and 3 deletions

View file

@ -2,6 +2,19 @@
Changelog Changelog
========= =========
Version 20.0a4
==============
*Released 2022-08-27*
This is the technical changelog for version 20.0a4. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`_.
Hot Fixes
---------
* Fix a Bug in ``setup.py`` Regarding Optional Dependencies (`#3209`_)
.. _`#3209`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3209
Version 20.0a3 Version 20.0a3
============== ==============
*Released 2022-08-27* *Released 2022-08-27*

View file

@ -29,9 +29,9 @@ author = "Leandro Toledo"
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = "20.0a3" # telegram.__version__[:3] version = "20.0a4" # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = "20.0a3" # telegram.__version__ release = "20.0a4" # telegram.__version__
# If your documentation needs a minimal Sphinx version, state it here. # If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = "4.5.0" needs_sphinx = "4.5.0"

View file

@ -50,7 +50,7 @@ class Version(NamedTuple):
return version return version
__version_info__ = Version(major=20, minor=0, micro=0, releaselevel="alpha", serial=3) __version_info__ = Version(major=20, minor=0, micro=0, releaselevel="alpha", serial=4)
__version__ = str(__version_info__) __version__ = str(__version_info__)
# # SETUP.PY MARKER # # SETUP.PY MARKER