diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index ba2574a8483c..d9081835b8c0 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,15 @@ https://github.com/RasaHQ/rasa/tree/master/changelog/ . --> +## [2.0.6] - 2020-11-10 + + +### Bugfixes +- [#6629](https://github.com/rasahq/rasa/issues/6629): Fixed a bug that occurred when setting multiple Sanic workers in combination with a custom [Lock Store](lock-stores.mdx). Previously, if the number was set higher than 1 and you were using a custom lock store, it would reject because of a strict check to use a [Redis Lock Store](lock-stores.mdx#redislockstore). +- [#7176](https://github.com/rasahq/rasa/issues/7176): Fixed a bug in the [`TwoStageFallback`](fallback-handoff.mdx#two-stage-fallback) action which + reverted too many events after the user successfully rephrased. + + ## [2.0.5] - 2020-11-10 diff --git a/changelog/6629.bugfix.md b/changelog/6629.bugfix.md deleted file mode 100644 index 43063d142356..000000000000 --- a/changelog/6629.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug that occurred when setting multiple Sanic workers in combination with a custom [Lock Store](lock-stores.mdx). Previously, if the number was set higher than 1 and you were using a custom lock store, it would reject because of a strict check to use a [Redis Lock Store](lock-stores.mdx#redislockstore). diff --git a/changelog/7176.bugfix.md b/changelog/7176.bugfix.md deleted file mode 100644 index 6264eadf694e..000000000000 --- a/changelog/7176.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -Fixed a bug in the [`TwoStageFallback`](fallback-handoff.mdx#two-stage-fallback) action which -reverted too many events after the user successfully rephrased. diff --git a/pyproject.toml b/pyproject.toml index c0f619232caa..c2ef490fac46 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.5" +version = "2.0.6" 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 6eefd543e86d..8f9a3c980039 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.5" +__version__ = "2.0.6"