mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
bump version to 4.0.0, update CHANGES
This commit is contained in:
parent
0e34c0395f
commit
fd15e51e28
4 changed files with 14 additions and 3 deletions
11
CHANGES.rst
11
CHANGES.rst
|
@ -1,3 +1,14 @@
|
||||||
|
**2016-04-27**
|
||||||
|
|
||||||
|
*Released 4.0*
|
||||||
|
|
||||||
|
- Implement Bot API 2.0
|
||||||
|
- Almost complete recode of ``Dispatcher``
|
||||||
|
- Please read the `Transistion Guide to 4.0 <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Transistion-guide-to-Version-4.0>`_
|
||||||
|
- **Changes from 4.0rc1**
|
||||||
|
- The syntax of filters for ``MessageHandler`` (upper/lower cases)
|
||||||
|
- Handler groups are now identified by ``int`` only, and ordered
|
||||||
|
|
||||||
**2016-04-22**
|
**2016-04-22**
|
||||||
|
|
||||||
*Released 4.0rc1*
|
*Released 4.0rc1*
|
||||||
|
|
|
@ -60,7 +60,7 @@ author = u'Leandro Toledo'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '4.0'
|
version = '4.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '4.0rc1'
|
release = '4.0.0'
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -26,7 +26,7 @@ def requirements():
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='python-telegram-bot',
|
name='python-telegram-bot',
|
||||||
version='4.0rc1',
|
version='4.0.0',
|
||||||
author='Leandro Toledo',
|
author='Leandro Toledo',
|
||||||
author_email='devs@python-telegram-bot.org',
|
author_email='devs@python-telegram-bot.org',
|
||||||
license='LGPLv3',
|
license='LGPLv3',
|
||||||
|
|
|
@ -81,7 +81,7 @@ from .bot import Bot
|
||||||
|
|
||||||
|
|
||||||
__author__ = 'devs@python-telegram-bot.org'
|
__author__ = 'devs@python-telegram-bot.org'
|
||||||
__version__ = '4.0rc1'
|
__version__ = '4.0'
|
||||||
__all__ = ['Audio',
|
__all__ = ['Audio',
|
||||||
'Bot',
|
'Bot',
|
||||||
'Chat',
|
'Chat',
|
||||||
|
|
Loading…
Reference in a new issue