diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cc0b3e4e0292..edfeff72023e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,14 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.10.12] - 2020-09-03 +^^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#6549 `_: Fix slow training of ``CRFEntityExtractor`` when using Entity Roles and Groups. + + [1.10.11] - 2020-08-21 ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/6549.bugfix.rst b/changelog/6549.bugfix.rst deleted file mode 100644 index 7e5200cf79b0..000000000000 --- a/changelog/6549.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix slow training of ``CRFEntityExtractor`` when using Entity Roles and Groups. diff --git a/pyproject.toml b/pyproject.toml index 300b0bac98cb..cfbaa9302d52 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.11" +version = "1.10.12" 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 51f77fc2a138..62de9ed6ef32 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.11" +__version__ = "1.10.12"