diff --git a/CHANGES.rst b/CHANGES.rst index 6d4495dc2..2116b225a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,23 @@ Changes ======= +**2016-09-24** + +*Released 5.1* + +- Drop Python 2.6 support +- Deprecate ``telegram.Emoji`` + +- Use ``ujson`` if available +- Add instance methods to ``Message``, ``Chat``, ``User``, ``InlineQuery`` and ``CallbackQuery`` +- RegEx filtering for ``CallbackQueryHandler`` and ``InlineQueryHandler`` +- New ``MessageHandler`` filters: ``forwarded`` and ``entity`` +- Add ``Message.get_entity`` to correctly handle UTF-16 codepoints and ``MessageEntity`` offsets +- Fix bug in ``ConversationHandler`` when first handler ends the conversation +- Allow multiple ``Dispatcher`` instances +- Add ``ChatMigrated`` Exception +- Properly split and handle arguments in ``CommandHandler`` + **2016-07-15** *Released 5.0* diff --git a/setup.py b/setup.py index 4ace4b9dc..b6c0da28e 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ with codecs.open('README.rst', 'r', 'utf-8') as fd: author='Leandro Toledo', author_email='devs@python-telegram-bot.org', license='LGPLv3', - url='https://github.com/python-telegram-bot/python-telegram-bot', + url='https://python-telegram-bot.org/', keywords='python telegram bot api wrapper', description='Not just a Python wrapper around the Telegram Bot API', long_description=fd.read(), diff --git a/telegram/version.py b/telegram/version.py index 1f7798ad1..7c54e624d 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -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__ = '5.0.0' +__version__ = '5.1.0'