From 24f687075e72396ec5aba6e0f34226e6d5be0ae6 Mon Sep 17 00:00:00 2001 From: Tom Bocklisch Date: Thu, 22 Oct 2020 15:41:45 +0200 Subject: [PATCH] prepared release of version 2.0.2 --- CHANGELOG.mdx | 11 +++++++++++ changelog/6691.bugfix.md | 1 - changelog/7053.bugfix.md | 1 - changelog/7057.misc.md | 1 - pyproject.toml | 7 +++++-- rasa/version.py | 2 +- 6 files changed, 17 insertions(+), 6 deletions(-) delete mode 100644 changelog/6691.bugfix.md delete mode 100644 changelog/7053.bugfix.md delete mode 100644 changelog/7057.misc.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index c69515bd094b..394df32a70b8 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,17 @@ https://github.com/RasaHQ/rasa/tree/master/changelog/ . --> +## [2.0.2] - 2020-10-22 + + +### Bugfixes +- [#6691](https://github.com/rasahq/rasa/issues/6691): Fix description of previous event in output of `rasa data validate stories` +- [#7053](https://github.com/rasahq/rasa/issues/7053): Fixed command line coloring for windows command lines running an encoding other than `utf-8`. + +### Miscellaneous internal changes +- [#7057](https://github.com/rasahq/rasa/issues/7057) + + ## [2.0.1] - 2020-10-20 diff --git a/changelog/6691.bugfix.md b/changelog/6691.bugfix.md deleted file mode 100644 index ba99830f6dba..000000000000 --- a/changelog/6691.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix description of previous event in output of `rasa data validate stories` diff --git a/changelog/7053.bugfix.md b/changelog/7053.bugfix.md deleted file mode 100644 index 78b576bf94ad..000000000000 --- a/changelog/7053.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed command line coloring for windows command lines running an encoding other than `utf-8`. diff --git a/changelog/7057.misc.md b/changelog/7057.misc.md deleted file mode 100644 index 3d8444c60594..000000000000 --- a/changelog/7057.misc.md +++ /dev/null @@ -1 +0,0 @@ -Fixed several Sentry errors by introducing proper `RasaException`s. diff --git a/pyproject.toml b/pyproject.toml index c089eb38505e..b146f0f01d18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "2.0.1" +version = "2.0.2" 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 ",] @@ -127,7 +127,6 @@ oauth2client = "4.1.3" regex = ">=2020.6,<2020.10" joblib = "^0.15.1" sentry-sdk = ">=0.17.0,<0.20.0" -colorama = {version = "^0.4.4", markers = "sys_platform == 'win32'"} [tool.poetry.dev-dependencies] pytest-cov = "^2.10.0" @@ -164,6 +163,10 @@ gh-release-notes = [ "github3.py",] [tool.poetry.scripts] rasa = "rasa.__main__:main" +[tool.poetry.dependencies.colorama] +version = "^0.4.4" +markers = "sys_platform == 'win32'" + [tool.poetry.dependencies.spacy] version = ">=2.1,<2.3" optional = true diff --git a/rasa/version.py b/rasa/version.py index 545d6323cb9a..58652243e3f6 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__ = "2.0.1" +__version__ = "2.0.2"