From 5e28f277642e049600359856685f45bf94384aaf Mon Sep 17 00:00:00 2001 From: Badiboy Date: Sat, 16 Apr 2022 23:17:19 +0300 Subject: [PATCH 1/2] Bump version to 4.4.1 --- telebot/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/version.py b/telebot/version.py index 0a15dc1..e7fe97a 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.4.0' +__version__ = '4.4.1' From 1a40f1da7aec587570c416ad2afdd5bf0217bd58 Mon Sep 17 00:00:00 2001 From: Badiboy Date: Sat, 16 Apr 2022 23:21:25 +0300 Subject: [PATCH 2/2] Bump version to 4.4.1 --- docs/source/conf.py | 2 +- examples/custom_states.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e962ae3..104db8f 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.4.0' +release = '4.4.1' # -- General configuration --------------------------------------------------- diff --git a/examples/custom_states.py b/examples/custom_states.py index a18de1f..2f9a2bc 100644 --- a/examples/custom_states.py +++ b/examples/custom_states.py @@ -7,7 +7,7 @@ from telebot.handler_backends import State, StatesGroup #States from telebot.storage import StateMemoryStorage -# Beginning from version 4.4.0+, we support storages. +# Starting from version 4.4.0+, we support storages. # StateRedisStorage -> Redis-based storage. # StatePickleStorage -> Pickle-based storage. # For redis, you will need to install redis.