Skip to content

Commit 51a4a66

Browse files
committed
Bump version to v13.8
1 parent e4dc80f commit 51a4a66

3 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGES.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22
Changelog
33
=========
44

5+
Version 13.8
6+
============
7+
*Released 2021-11-08*
8+
9+
This is the technical changelog for version 13.8. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`_.
10+
11+
**Major Changes:**
12+
13+
- Full support for API 5.4 (`#2767`_)
14+
15+
**Minor changes, CI improvements, Doc fixes and Type hinting:**
16+
17+
- Create Issue Template Forms (`#2689`_)
18+
- Fix ``camelCase`` Functions in ``ExtBot`` (`#2659`_)
19+
- Fix Empty Captions not Being Passed by ``Bot.copy_message`` (`#2651`_)
20+
- Fix Setting Thumbs When Uploading A Single File (`#2583`_)
21+
- Fix Bug in ``BasePersistence.insert``/``replace_bot`` for Objects with ``__dict__`` not in ``__slots__`` (`#2603`_)
22+
23+
.. _`#2767`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2767
24+
.. _`#2689`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2689
25+
.. _`#2659`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2659
26+
.. _`#2651`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2651
27+
.. _`#2583`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2583
28+
.. _`#2603`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2603
29+
530
Version 13.7
631
============
732
*Released 2021-07-01*

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '13.7' # telegram.__version__[:3]
63+
version = '13.8' # telegram.__version__[:3]
6464
# The full version, including alpha/beta/rc tags.
65-
release = '13.7' # telegram.__version__
65+
release = '13.8' # telegram.__version__
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

telegram/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
from telegram import constants
2222

23-
__version__ = '13.7'
23+
__version__ = '13.8'
2424
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103

0 commit comments

Comments
 (0)