Skip to content

Commit

Permalink
Bump version to 4.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Badiboy committed Oct 21, 2022
1 parent 31c3a2b commit 623d8b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'coder2020official'

# The full version, including alpha/beta/rc tags
release = '4.7.0'
release = '4.7.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/asynchronous_telebot/detect_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
2 changes: 1 addition & 1 deletion examples/detect_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ def send_welcome(message):
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)
2 changes: 1 addition & 1 deletion telebot/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Versions should comply with PEP440.
# This line is parsed in setup.py:
__version__ = '4.7.0'
__version__ = '4.7.1'

0 comments on commit 623d8b2

Please sign in to comment.