Skip to content

Commit

Permalink
Merge pull request #404 from RasaHQ/prepare-release-2.3.1
Browse files Browse the repository at this point in the history
Prepare release 2.3.1
  • Loading branch information
wochinge authored Feb 11, 2021
2 parents 2db4afe + a1f815c commit 2491f2a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . -->

<!-- TOWNCRIER -->

## [2.3.1] - 2021-02-11


### Bugfixes
- [#404](https://github.com/rasahq/rasa/issues/1234): Only pin the `uvloop` dependency for non-Windows systems as `uvloop` is not available
for Windows.


## [2.3.0] - 2021-02-11


Expand Down
8 changes: 7 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))"

[tool.poetry]
name = "rasa-sdk"
version = "2.3.0"
version = "2.3.1"
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 <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
Expand Down Expand Up @@ -66,8 +66,6 @@ showcontent = false
python = ">=3.6,<3.9"
coloredlogs = ">=10,<15"
sanic = ">=19.12.2,<21.0.0"
# uvloop >= 0.15.0 is not compatible with Python 3.6
uvloop = "<0.15.0"
sanic-cors = "^0.10.0"
requests = "^2.23"

Expand All @@ -86,3 +84,8 @@ pep440-version-utils = "^0.3.0"
semantic_version = "^2.8.5"
typing-extensions = "^3.7.4"
mypy = "^0.782"

# uvloop >= 0.15.0 is not compatible with Python 3.6 and not available on Windows
[tool.poetry.dependencies.uvloop]
version = "<0.15.0"
markers = "sys_platform != 'win32'"
2 changes: 1 addition & 1 deletion rasa_sdk/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.3.0"
__version__ = "2.3.1"

0 comments on commit 2491f2a

Please sign in to comment.