Skip to content

Commit

Permalink
version 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Scarlato (Jungmann) committed Mar 22, 2016
1 parent 4408ff2 commit 085c90f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
-------
0.1.8 (2016-03-22)
++++++++++++++++++

* Update for deprecation in python-telegram-bot release v3.4


0.1.5 (2016-01-28)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion django_telegrambot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1.7'
__version__ = '0.1.8'
default_app_config = 'django_telegrambot.apps.DjangoTelegramBot'
2 changes: 1 addition & 1 deletion django_telegrambot/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def ready(self):

logger.info('Telegram Bot <{}> setting webhook [ {} ] : {}'.format(bot.username,hookurl,setted))

DjangoTelegramBot.dispatchers.append(telegram.Dispatcher(bot, None))
DjangoTelegramBot.dispatchers.append(telegram.ext.Dispatcher(bot, None))
DjangoTelegramBot.bots.append(bot)
DjangoTelegramBot.bot_tokens.append(bot.token)
DjangoTelegramBot.bot_usernames.append(bot.username)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
django>=1.8.0
# Additional requirements go here
python-telegram-bot>=3.2.0
python-telegram-bot>=3.4.0

0 comments on commit 085c90f

Please sign in to comment.