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)