diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e4bf72b8593b..d683946c24f6 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.18] - 2020-11-26 +^^^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#7340 `_: Fixed an issues with the DynamoDB TrackerStore creating a new table entry/object for each TrackerStore update. The column `session_date` has been deprecated and should be removed manually in existing DynamoDB tables. + + [1.10.17] - 2020-11-12 ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/7340.bugfix.md b/changelog/7340.bugfix.md deleted file mode 100644 index 4764fafb4799..000000000000 --- a/changelog/7340.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed an issues with the DynamoDB TrackerStore creating a new table entry/object for each TrackerStore update. The column `session_date` has been deprecated and should be removed manually in existing DynamoDB tables. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f081f5a11479..37f5d729b3eb 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.17" +version = "1.10.18" 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 9fb9eaf8ae1c..4ed5bfbccece 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.17" +__version__ = "1.10.18"