From b3e24199f020d876beb7a9ab3bc18afc65ebe989 Mon Sep 17 00:00:00 2001 From: Anca Lita <27920906+ancalita@users.noreply.github.com> Date: Tue, 11 Jul 2023 11:47:39 +0100 Subject: [PATCH] prepared release of version 3.6.1 (cherry picked from commit a7e8383bad4f4de1b8131c7af81f15fc9bdc9f7a) --- CHANGELOG.mdx | 7 +++++++ changelog/1219.bugfix.md | 1 - pyproject.toml | 2 +- rasa_sdk/version.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) delete mode 100644 changelog/1219.bugfix.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 67d99a1a5..128b57692 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,13 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.6.1] - 2023-07-11 + +Rasa_Sdk 3.6.1 (2023-07-11) +### Bugfixes +- [#1219](https://github.com/rasahq/rasa-sdk/issues/1219): The logger for rasa_sdk plugin will not throw traceback when no plugins are found since plugins are optional. It will be only available in debug mode, however the action server will continue to run. + + ## [3.6.0] - 2023-06-13 Rasa_Sdk 3.6.0 (2023-06-13) diff --git a/changelog/1219.bugfix.md b/changelog/1219.bugfix.md deleted file mode 100644 index e53471204..000000000 --- a/changelog/1219.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -The logger for rasa_sdk plugin will not throw traceback when no plugins are found since plugins are optional. It will be only available in debug mode, however the action server will continue to run. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 3d49b3451..e8882e1d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))" [tool.poetry] name = "rasa-sdk" -version = "3.7.0b1" +version = "3.6.1" description = "Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants" authors = [ "Rasa Technologies GmbH ",] maintainers = [ "Tom Bocklisch ",] diff --git a/rasa_sdk/version.py b/rasa_sdk/version.py index aeb366ef8..a5c6adb19 100644 --- a/rasa_sdk/version.py +++ b/rasa_sdk/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "3.7.0b1" +__version__ = "3.6.1"