diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d683946c24f6..4f766e7d9d8b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,19 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.10.19] - 2020-12-17 +^^^^^^^^^^^^^^^^^^^^^^ + +Improvements +------------ +- `#6251 `_: Kafka Producer connection now remains active across sends. Added support for group and client id. + The Kafka producer also adds support for the `PLAINTEXT` and `SASL_SSL` protocols. + + DynamoDB table exists check fixed bug when more than 100 tables exist. +- `#6814 `_: Replace use of ``python-telegram-bot`` package with ``pyTelegramBotAPI`` +- `#7423 `_: Use response selector keys (sub-intents) as labels for plotting the confusion matrix during NLU evaluation to improve readability. + + [1.10.18] - 2020-11-26 ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/6251.improvement.md b/changelog/6251.improvement.md deleted file mode 100644 index 8c4fd2ae9f96..000000000000 --- a/changelog/6251.improvement.md +++ /dev/null @@ -1,4 +0,0 @@ -Kafka Producer connection now remains active across sends. Added support for group and client id. -The Kafka producer also adds support for the `PLAINTEXT` and `SASL_SSL` protocols. - -DynamoDB table exists check fixed bug when more than 100 tables exist. \ No newline at end of file diff --git a/changelog/6814.improvement.md b/changelog/6814.improvement.md deleted file mode 100644 index 4b4df268167a..000000000000 --- a/changelog/6814.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Replace use of ``python-telegram-bot`` package with ``pyTelegramBotAPI`` \ No newline at end of file diff --git a/changelog/7423.improvement.md b/changelog/7423.improvement.md deleted file mode 100644 index 87fbbd6c66f5..000000000000 --- a/changelog/7423.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Use response selector keys (sub-intents) as labels for plotting the confusion matrix during NLU evaluation to improve readability. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 1955467aa11f..811ceb4601cc 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.18" +version = "1.10.19" 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 4ed5bfbccece..87fa71ac4430 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.18" +__version__ = "1.10.19"