diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index d9081835b8c0..4cc0823520bf 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,18 @@ https://github.com/RasaHQ/rasa/tree/master/changelog/ . --> +## [2.0.7] - 2020-11-24 + + +### Bugfixes +- [#5974](https://github.com/rasahq/rasa/issues/5974): `ActionRestart` will now trigger `ActionSessionStart` as a followup action. +- [#7317](https://github.com/rasahq/rasa/issues/7317): Fixed Rasa Open Source not being able to fetch models from certain URLs. + + This addresses an issue introduced in 2.0.3 where `rasa-production` could not use the models from `rasa-x` in Rasa X server mode. +- [#7316](https://github.com/rasahq/rasa/issues/7316): `SingleStateFeaturizer` checks whether it was trained with `RegexInterpreter` as + NLU interpreter. If that is the case, `RegexInterpreter` is used during prediction. + + ## [2.0.6] - 2020-11-10 diff --git a/changelog/5974.bugfix.md b/changelog/5974.bugfix.md deleted file mode 100644 index 4da157c583b1..000000000000 --- a/changelog/5974.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -`ActionRestart` will now trigger `ActionSessionStart` as a followup action. diff --git a/changelog/7316.bugfix.md b/changelog/7316.bugfix.md deleted file mode 100644 index aaa0a64b2ab8..000000000000 --- a/changelog/7316.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -`SingleStateFeaturizer` checks whether it was trained with `RegexInterpreter` as -nlu interpreter. If that is the case, `RegexInterpreter` is used during prediction. diff --git a/changelog/7317.bugfix.md b/changelog/7317.bugfix.md deleted file mode 100644 index a150badf33a5..000000000000 --- a/changelog/7317.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed Rasa Open Source not being able to fetch models from certain URLs. diff --git a/pyproject.toml b/pyproject.toml index c2ef490fac46..1ed40ca0d93d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "2.0.6" +version = "2.0.7" 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/version.py b/rasa/version.py index 8f9a3c980039..b7b438d51804 100644 --- a/rasa/version.py +++ b/rasa/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "2.0.6" +__version__ = "2.0.7"