diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ba36854f44a0..b8dc183184fc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,16 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.10.14] - 2020-09-23 +^^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#6741 `_: Fixed the remote URL of ConveRT model as it was recently updated by its authors. + + Also made the remote URL configurable at runtime in the corresponding tokenizer's and featurizer's configuration. + + [1.10.13] - 2020-09-21 ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/6741.bugfix.md b/changelog/6741.bugfix.md deleted file mode 100644 index 9f5601ca18d8..000000000000 --- a/changelog/6741.bugfix.md +++ /dev/null @@ -1,3 +0,0 @@ -Fixed the remote URL of ConveRT model as it was recently updated by its authors. - -Also made the remote URL configurable at runtime in the corresponding tokenizer's and featurizer's configuration. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8e7b2e0e82fe..08370eeba55a 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.13" +version = "1.10.14" 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 35e06f371dd7..e23767117251 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.13" +__version__ = "1.10.14"