diff --git a/docs/source/conf.py b/docs/source/conf.py index ae52f75..6a38909 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ copyright = '2022, coder2020official' author = 'coder2020official' # The full version, including alpha/beta/rc tags -release = '4.7.0' +release = '4.7.1' # -- General configuration --------------------------------------------------- diff --git a/examples/asynchronous_telebot/detect_changes.py b/examples/asynchronous_telebot/detect_changes.py index 0a0e142..7fb202b 100644 --- a/examples/asynchronous_telebot/detect_changes.py +++ b/examples/asynchronous_telebot/detect_changes.py @@ -24,5 +24,5 @@ async def echo_message(message): import asyncio -# only new versions(4.7.0+) +# only for versions 4.7.0+ asyncio.run(bot.polling(restart_on_change=True)) diff --git a/examples/detect_changes.py b/examples/detect_changes.py index da2a2c8..58eeb8f 100644 --- a/examples/detect_changes.py +++ b/examples/detect_changes.py @@ -24,5 +24,5 @@ I am here to echo your kind words back to you. Just say anything nice and I'll s def echo_message(message): bot.reply_to(message, message.text) -# only versions greater than 4.7.0 +# only for versions 4.7.0+ bot.infinity_polling(restart_on_change=True) diff --git a/telebot/version.py b/telebot/version.py index a79bcc2..794c97f 100644 --- a/telebot/version.py +++ b/telebot/version.py @@ -1,3 +1,3 @@ # Versions should comply with PEP440. # This line is parsed in setup.py: -__version__ = '4.7.0' +__version__ = '4.7.1'