From eeec7caec570d8aff735b2b2fc26f4e84bfe335c Mon Sep 17 00:00:00 2001 From: yennycheung Date: Tue, 23 Mar 2021 16:17:42 +0100 Subject: [PATCH] prepared release of version 2.4.1 --- CHANGELOG.mdx | 10 ++++++++++ changelog/419.bugfix.md | 3 --- changelog/8223.bugfix.md | 1 - pyproject.toml | 2 +- rasa_sdk/version.py | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) delete mode 100644 changelog/419.bugfix.md delete mode 100644 changelog/8223.bugfix.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 75b33dcd8..d9f5e5c63 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,16 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [2.4.1] - 2021-03-23 + + +### Bugfixes +- [#419](https://github.com/rasahq/rasa/issues/419): Missing `typing_extensions` module added + + Minor dependency updates +- [#8223](https://github.com/rasahq/rasa/issues/8223): `utter_message` in `CollectingDispatcher` now explicitly takes in both `response` and `template`. Note that the parameter `template` will be deprecated in Rasa SDK 3.0.0. Please use `dispatcher.utter_message(response=...)` instead. + + ## [2.4.0] - 2021-03-11 diff --git a/changelog/419.bugfix.md b/changelog/419.bugfix.md deleted file mode 100644 index 7bd8f5046..000000000 --- a/changelog/419.bugfix.md +++ /dev/null @@ -1,3 +0,0 @@ -Missing `typing_extensions` module added - -Minor dependency updates diff --git a/changelog/8223.bugfix.md b/changelog/8223.bugfix.md deleted file mode 100644 index e4a0f48e5..000000000 --- a/changelog/8223.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -`utter_message` in `CollectingDispatcher` now explicitly takes in both `response` and `template`. Note that the parameter `template` will be deprecated in Rasa SDK 3.0.0. Please use `dispatcher.utter_message(response=...)` instead. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5fca7b287..3b45aaa4f 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 = "2.4.0" +version = "2.4.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 484bb7835..2b9b619ed 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__ = "2.4.0" +__version__ = "2.4.1"