mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 22:45:09 +01:00
Releasing v11.1
This commit is contained in:
parent
09bdb88822
commit
259a1faedc
4 changed files with 19 additions and 4 deletions
15
CHANGES.rst
15
CHANGES.rst
|
@ -2,6 +2,21 @@
|
||||||
Changes
|
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**
|
**2018-08-29**
|
||||||
*Released 11.0.0*
|
*Released 11.0.0*
|
||||||
|
|
||||||
|
|
|
@ -95,7 +95,7 @@ make the development of bots easy and straightforward. These classes are contain
|
||||||
Telegram API support
|
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
|
Installing
|
||||||
|
|
|
@ -58,9 +58,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# 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.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
# You should have received a copy of the GNU Lesser Public License
|
# You should have received a copy of the GNU Lesser Public License
|
||||||
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
||||||
|
|
||||||
__version__ = '11.0.0'
|
__version__ = '11.1.0'
|
||||||
|
|
Loading…
Reference in a new issue