From 259a1faedc92878e6ed3da537f3facdfafefebee Mon Sep 17 00:00:00 2001 From: Jasmin Bom Date: Sat, 1 Sep 2018 17:27:35 +0200 Subject: [PATCH] Releasing v11.1 --- CHANGES.rst | 15 +++++++++++++++ README.rst | 2 +- docs/source/conf.py | 4 ++-- telegram/version.py | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 27ac11100..69b908a8c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,21 @@ Changes ======= +**2018-09-01** +*Released 11.1.0* + +Fixes and updates for Telegram Passport: (`#1198`_) + +- Fix passport decryption failing at random times +- Added support for middle names. +- Added support for translations for documents +- Add errors for translations for documents +- Added support for requesting names in the language of the user's country of residence +- Replaced the payload parameter with the new parameter nonce +- Add hash to EncryptedPassportElement + +.. _`#1198`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1198 + **2018-08-29** *Released 11.0.0* diff --git a/README.rst b/README.rst index 111043fb0..64739a758 100644 --- a/README.rst +++ b/README.rst @@ -95,7 +95,7 @@ make the development of bots easy and straightforward. These classes are contain Telegram API support ==================== -All types and methods of the Telegram Bot API **4.0** are supported. +All types and methods of the Telegram Bot API **4.1** are supported. ========== Installing diff --git a/docs/source/conf.py b/docs/source/conf.py index c016e9f7d..01fe8cd66 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,9 +58,9 @@ author = u'Leandro Toledo' # built documents. # # The short X.Y version. -version = '11.0' # telegram.__version__[:3] +version = '11.1' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '11.0.0' # telegram.__version__ +release = '11.1.0' # telegram.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/telegram/version.py b/telegram/version.py index 4db02ea94..eb67f6b80 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -17,4 +17,4 @@ # You should have received a copy of the GNU Lesser Public License # along with this program. If not, see [http://www.gnu.org/licenses/]. -__version__ = '11.0.0' +__version__ = '11.1.0'