Skip to content

Commit

Permalink
prepared release of version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbo committed Oct 22, 2020
1 parent 9addf24 commit 24f6870
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ https://github.com/RasaHQ/rasa/tree/master/changelog/ . -->

<!-- TOWNCRIER -->

## [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


Expand Down
1 change: 0 additions & 1 deletion changelog/6691.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/7053.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/7057.misc.md

This file was deleted.

7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hi@rasa.com>",]
maintainers = [ "Tom Bocklisch <tom@rasa.com>",]
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rasa/version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 24f6870

Please sign in to comment.