Bump version to v6.1.0

This commit is contained in:
Jannes Höke 2017-06-18 12:35:16 +02:00
parent faddb92395
commit d5583190b8
4 changed files with 12 additions and 10 deletions

View file

@ -2,6 +2,14 @@
Changes
=======
**2017-06-18**
*Released 6.1.0*
- Fully support Bot API 3.0
- Add more fine-grained filters for status updates
- Bug fixes and other improvements
**2017-05-29**
*Released 6.0.3*

View file

@ -84,13 +84,7 @@ make the development of bots easy and straightforward. These classes are contain
Telegram API support
====================
As of **21. May 2017**, all types and methods of the Telegram Bot API 2.3.1 are supported. Additionally, the ``deleteMessage`` API function and the field ``User.language_code`` are supported.
Also, version 6.1 beta 0 is available, offering full but experimental Bot API 3.0 coverage:
.. code:: shell
$ pip install python-telegram-bot==6.1b0
As of **18. June 2017**, all types and methods of the Telegram Bot API 3.0 are supported.
==========
Installing

View file

@ -58,9 +58,9 @@ author = u'Leandro Toledo'
# built documents.
#
# The short X.Y version.
version = '6.0' # telegram.__version__[:3]
version = '6.1' # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = '6.0.3' # telegram.__version__
release = '6.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__ = '6.0.3'
__version__ = '6.1.0'