From 9ed795dc93ad72bcdf93035fb1c2f888b778340d Mon Sep 17 00:00:00 2001 From: Tanja Bergmann Date: Tue, 7 Jul 2020 17:06:04 +0200 Subject: [PATCH] prepared release of version 1.10.7 --- CHANGELOG.rst | 15 +++++++++++++++ changelog/6150.bugfix.rst | 1 - changelog/6150.feature.rst | 4 ---- pyproject.toml | 2 +- rasa/version.py | 2 +- 5 files changed, 17 insertions(+), 7 deletions(-) delete mode 100644 changelog/6150.bugfix.rst delete mode 100644 changelog/6150.feature.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7240411b966c..fea88c499643 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,21 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.10.7] - 2020-07-07 +^^^^^^^^^^^^^^^^^^^^^ + +Features +-------- +- `#6150 `_: Add ``not_supported_language_list`` to component to be able to define languages that a component can NOT handle. + + ``WhitespaceTokenizer`` is not able to process languages which are not separated by whitespace. ``WhitespaceTokenizer`` + will throw an error if it is used with Chinese, Japanese, and Thai. + +Bugfixes +-------- +- `#6150 `_: ``WhitespaceTokenizer`` only removes emoji if complete token matches emoji regex. + + [1.10.6] - 2020-07-06 ^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/6150.bugfix.rst b/changelog/6150.bugfix.rst deleted file mode 100644 index 99ccc8090a9a..000000000000 --- a/changelog/6150.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``WhitespaceTokenizer`` only removes emoji if complete token matches emoji regex. \ No newline at end of file diff --git a/changelog/6150.feature.rst b/changelog/6150.feature.rst deleted file mode 100644 index d26d831805b1..000000000000 --- a/changelog/6150.feature.rst +++ /dev/null @@ -1,4 +0,0 @@ -Add ``not_supported_language_list`` to component to be able to define languages that a component can NOT handle. - -``WhitespaceTokenizer`` is not able to process languages which are not separated by whitespace. ``WhitespaceTokenizer`` -will throw an error if it is used with Chinese, Japanese, and Thai. diff --git a/pyproject.toml b/pyproject.toml index 56d528486bb7..e398916b93c8 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.6" +version = "1.10.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 6c24f89726b8..b24bd9807366 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.6" +__version__ = "1.10.7"