diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c09b2a73b..feb988ff5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,15 @@ This project adheres to `Semantic Versioning`_ starting with version 0.11.0. .. towncrier release notes start +[1.10.3] - 2020-09-23 +^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- + +- Only fill other slots if slot mapping contains a role or group restriction and the entity type matches. + + [1.10.2] - 2020-06-25 ^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/237.enhancement.rst b/changelog/237.enhancement.rst deleted file mode 100644 index 828a9b5b2..000000000 --- a/changelog/237.enhancement.rst +++ /dev/null @@ -1,2 +0,0 @@ -Only fill other slots if slot mapping contains a role or group restriction and -the entity type matches. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 71af1f758..1e3324be7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "rasa-sdk" -version = "1.10.2" +version = "1.10.3" 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 9d05bb294..5589dd90b 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__ = "1.10.2" +__version__ = "1.10.3"