diff --git a/CHANGELOG.rst b/CHANGELOG.rst index edfeff72023e..ba36854f44a0 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.13] - 2020-09-21 +^^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#6577 `_: Remove BILOU tag prefix from role and group labels when creating entities. + + [1.10.12] - 2020-09-03 ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/6577.bugfix.md b/changelog/6577.bugfix.md deleted file mode 100644 index ee6c40c5fbf2..000000000000 --- a/changelog/6577.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Remove BILOU tag prefix from role and group labels when creating entities. diff --git a/pyproject.toml b/pyproject.toml index cfbaa9302d52..8e7b2e0e82fe 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.12" +version = "1.10.13" 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 62de9ed6ef32..35e06f371dd7 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.12" +__version__ = "1.10.13"