diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c9b1138ea292..3cfe36c102a9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,24 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.7.1] - 2020-02-11 +^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#5106 `_: Fixed file loading of non proper UTF-8 story files, failing properly when checking for + story files. +- `#5162 `_: Fix problem with multi-intents. + Training with multi-intents using the ``CountVectorsFeaturizer`` together with ``EmbeddingIntentClassifier`` is + working again. +- `#5171 `_: Fix bug ``ValueError: Cannot concatenate sparse features as sequence dimension does not match``. + + When training a Rasa model that contains responses for just some of the intents, training was failing. + Fixed the featurizers to return a consistent feature vector in case no response was given for a specific message. +- `#5199 `_: If no text features are present in ``EmbeddingIntentClassifier`` return the intent ``None``. +- `#5216 `_: Resolve version conflicts: Pin version of cloudpickle to ~=1.2.0. + + [1.7.0] - 2020-01-29 ^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/5106.bugfix.rst b/changelog/5106.bugfix.rst deleted file mode 100644 index eb918520ae4f..000000000000 --- a/changelog/5106.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed file loading of non proper UTF-8 story files, failing properly when checking for -story files. diff --git a/changelog/5162.bugfix.rst b/changelog/5162.bugfix.rst deleted file mode 100644 index 1834c31d6712..000000000000 --- a/changelog/5162.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Fix problem with multi-intents. -Training with multi-intents using the ``CountVectorsFeaturizer`` together with ``EmbeddingIntentClassifier`` is -working again. \ No newline at end of file diff --git a/changelog/5171.bugfix.rst b/changelog/5171.bugfix.rst deleted file mode 100644 index 84ab7abe61bf..000000000000 --- a/changelog/5171.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fix bug ``ValueError: Cannot concatenate sparse features as sequence dimension does not match``. - -When training a Rasa model that contains responses for just some of the intents, training was failing. -Fixed the featurizers to return a consistent feature vector in case no response was given for a specific message. \ No newline at end of file diff --git a/changelog/5199.bugfix.rst b/changelog/5199.bugfix.rst deleted file mode 100644 index bf71ac5b8309..000000000000 --- a/changelog/5199.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -If no text features are present in ``EmbeddingIntentClassifier`` return the intent ``None``. \ No newline at end of file diff --git a/changelog/5216.bugfix.rst b/changelog/5216.bugfix.rst deleted file mode 100644 index a9b916e5c6f5..000000000000 --- a/changelog/5216.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Resolve version conflicts: Pin version of cloudpickle to ~=1.2.0. \ No newline at end of file diff --git a/rasa/version.py b/rasa/version.py index bb08d0218d6e..554f38b23537 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.7.0" +__version__ = "1.7.1"