X Tutup
Skip to content

Commit fd15e51

Browse files
committed
bump version to 4.0.0, update CHANGES
1 parent 0e34c03 commit fd15e51

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGES.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
**2016-04-27**
2+
3+
*Released 4.0*
4+
5+
- Implement Bot API 2.0
6+
- Almost complete recode of ``Dispatcher``
7+
- Please read the `Transistion Guide to 4.0 <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Transistion-guide-to-Version-4.0>`_
8+
- **Changes from 4.0rc1**
9+
- The syntax of filters for ``MessageHandler`` (upper/lower cases)
10+
- Handler groups are now identified by ``int`` only, and ordered
11+
112
**2016-04-22**
213

314
*Released 4.0rc1*

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '4.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '4.0rc1'
63+
release = '4.0.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def requirements():
2626

2727
setup(
2828
name='python-telegram-bot',
29-
version='4.0rc1',
29+
version='4.0.0',
3030
author='Leandro Toledo',
3131
author_email='devs@python-telegram-bot.org',
3232
license='LGPLv3',

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181

8282

8383
__author__ = 'devs@python-telegram-bot.org'
84-
__version__ = '4.0rc1'
84+
__version__ = '4.0'
8585
__all__ = ['Audio',
8686
'Bot',
8787
'Chat',

0 commit comments

Comments
 (0)
X Tutup