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 ad365c4cb..ff410b13e 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.6.0" +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 f3f4996b6..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.6.0" +__version__ = "3.6.1"