Releasing v11.1

This commit is contained in:
Jasmin Bom 2018-09-01 17:27:35 +02:00
parent 09bdb88822
commit 259a1faedc
4 changed files with 19 additions and 4 deletions

View file

@ -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*

View file

@ -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

View file

@ -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.

View file

@ -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'