diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index aa21d1665312..9f0c680de0d0 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,13 @@ https://github.com/RasaHQ/rasa/tree/master/changelog/ . --> +## [2.1.1] - 2020-11-23 + + +### Bugfixes +- [#7338](https://github.com/rasahq/rasa/issues/7338): Sender ID is correctly set when copying the tracker and sending it to the action server (instead of sending the `default` value). This fixes a problem where the action server would only retrieve trackers with a `sender_id` `default`. + + ## [2.1.0] - 2020-11-17 diff --git a/changelog/7338.bugfix.md b/changelog/7338.bugfix.md deleted file mode 100644 index c481bb3dda29..000000000000 --- a/changelog/7338.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Sender ID is correctly set when copying the tracker and sending it to the action server (instead of sending the `default` value). This fixes a problem where the action server would only retrieve trackers with a `sender_id` `default`. diff --git a/pyproject.toml b/pyproject.toml index c8b022df0222..9e87eaedd078 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "2.1.0" +version = "2.1.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/version.py b/rasa/version.py index d9203cbc723e..3dc4c0025d84 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.1.0" +__version__ = "2.1.1"