Skip to content

Commit

Permalink
Bump version to v13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Nov 8, 2021
1 parent e4dc80f commit 51a4a66
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@
Changelog
=========

Version 13.8
============
*Released 2021-11-08*

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>`_.

**Major Changes:**

- Full support for API 5.4 (`#2767`_)

**Minor changes, CI improvements, Doc fixes and Type hinting:**

- Create Issue Template Forms (`#2689`_)
- Fix ``camelCase`` Functions in ``ExtBot`` (`#2659`_)
- Fix Empty Captions not Being Passed by ``Bot.copy_message`` (`#2651`_)
- Fix Setting Thumbs When Uploading A Single File (`#2583`_)
- Fix Bug in ``BasePersistence.insert``/``replace_bot`` for Objects with ``__dict__`` not in ``__slots__`` (`#2603`_)

.. _`#2767`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2767
.. _`#2689`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2689
.. _`#2659`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2659
.. _`#2651`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2651
.. _`#2583`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2583
.. _`#2603`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2603

Version 13.7
============
*Released 2021-07-01*
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '13.7' # telegram.__version__[:3]
version = '13.8' # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = '13.7' # telegram.__version__
release = '13.8' # telegram.__version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion telegram/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@

from telegram import constants

__version__ = '13.7'
__version__ = '13.8'
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103

0 comments on commit 51a4a66

Please sign in to comment.