Compare commits

..

2 Commits

Author SHA1 Message Date
Hinrich Mahler ccedd3a87d Bump version to v13.4.1 2021-03-14 19:21:44 +01:00
Bibo-Joshi 0bb4be55ac Fix setup.py (#2431) 2021-03-14 19:17:08 +01:00
4 changed files with 16 additions and 5 deletions
+10
View File
@@ -2,6 +2,16 @@
Changelog
=========
Version 13.4.1
==============
*Released 2021-03-14*
**Hot fix release:**
- Fixed a bug in ``setup.py`` (`#2431`_)
.. _`#2431`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2431
Version 13.4
============
*Released 2021-03-14*
+2 -2
View File
@@ -61,9 +61,9 @@ author = u'Leandro Toledo'
# built documents.
#
# The short X.Y version.
version = '13.4' # telegram.__version__[:3]
version = '13.4.1' # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = '13.4' # telegram.__version__
release = '13.4.1' # telegram.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+3 -2
View File
@@ -53,8 +53,9 @@ def get_setup_kwargs(raw=False):
fn = os.path.join('telegram', 'version.py')
with open(fn) as fh:
code = compile(fh.read(), fn, 'exec')
exec(code)
for line in fh.readlines():
if line.startswith('__version__'):
exec(line)
with open(readme, 'r', encoding='utf-8') as fd:
+1 -1
View File
@@ -20,5 +20,5 @@
from telegram import constants
__version__ = '13.4'
__version__ = '13.4.1'
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103