diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6c8688e12811..9858366ee3e1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,15 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.10.2] - 2020-06-03 +^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#5521 `_: Responses used in ResponseSelector now support new lines with explicitly adding ``\n`` between them. +- `#5758 `_: Fixed a bug in `rasa export `_ (:ref:`section_export`) which caused Rasa Open Source to only migrate conversation events from the last :ref:`session_config`. + + [1.10.1] - 2020-05-15 ^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/5521.bugfix.rst b/changelog/5521.bugfix.rst deleted file mode 100644 index 886dd2231dfb..000000000000 --- a/changelog/5521.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Responses used in ResponseSelector now support new lines with explicitly adding ``\n`` between them. diff --git a/changelog/5758.bugfix.rst b/changelog/5758.bugfix.rst deleted file mode 100644 index 386c5162e84b..000000000000 --- a/changelog/5758.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fixed a bug in -`rasa export `_ - (:ref:`section_export`) which caused Rasa Open Source to only migrate conversation -events from the last :ref:`session_config`. diff --git a/pyproject.toml b/pyproject.toml index 8082a94f0f98..207f2bd9af71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "1.10.1" +version = "1.10.2" 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 38cf8566642b..9d05bb294f18 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__ = "1.10.1" +__version__ = "1.10.2"