From ff5f6c11d5e254a434309ff3988c3ace59c9c68c Mon Sep 17 00:00:00 2001 From: "Hitalo M." Date: Fri, 23 Aug 2024 11:45:56 -0300 Subject: [PATCH] chore(release): bump version to 1.0.6 --- NEWS.rst | 10 ++++++++++ news/+handlers.bugfix.rst | 1 - news/+tiktok.bugfix.rst | 1 - news/+tr.bugfix.rst | 1 - src/korone/__init__.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 news/+handlers.bugfix.rst delete mode 100644 news/+tiktok.bugfix.rst delete mode 100644 news/+tr.bugfix.rst diff --git a/NEWS.rst b/NEWS.rst index 9433f55e1..cd0c03d5f 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -10,6 +10,16 @@ .. towncrier release notes start +1.0.6 (2024-08-23) +================== + +Bug Fixes +--------- + +- Dealing with cases where the text to be translated by `/tr` was empty, which caused the bot to crash. +- Fixed an error encountered during the TikTok media data search, causing the bot to just not respond to the request. +- Fixed problems with migrating groups to supergroups in the database, where the bot would crash if the group was not in the database and was converted to a supergroup. + 1.0.5 (2024-08-21) ================== diff --git a/news/+handlers.bugfix.rst b/news/+handlers.bugfix.rst deleted file mode 100644 index 05929bcbc..000000000 --- a/news/+handlers.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed problems with migrating groups to supergroups in the database, where the bot would crash if the group was not in the database and was converted to a supergroup. diff --git a/news/+tiktok.bugfix.rst b/news/+tiktok.bugfix.rst deleted file mode 100644 index 166572286..000000000 --- a/news/+tiktok.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed an error encountered during the TikTok media data search, causing the bot to just not respond to the request. diff --git a/news/+tr.bugfix.rst b/news/+tr.bugfix.rst deleted file mode 100644 index 7633dab18..000000000 --- a/news/+tr.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Dealing with cases where the text to be translated by `/tr` was empty, which caused the bot to crash. diff --git a/src/korone/__init__.py b/src/korone/__init__.py index a3fa58982..9c960ea07 100644 --- a/src/korone/__init__.py +++ b/src/korone/__init__.py @@ -5,7 +5,7 @@ from cashews import Cache -__version__ = "1.0.5" +__version__ = "1.0.6" cache = Cache() cache.setup("redis://localhost", client_side=True)