diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 09085e724..83f141142 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,11 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.3.0] - 2022-10-06 + +Rasa_Sdk 3.3.0 (2022-10-06) No significant changes. + + ## [3.2.1] - 2022-08-30 No significant changes. ## [3.2.0] - 2022-06-14 No significant changes. diff --git a/pyproject.toml b/pyproject.toml index d4aadab68..0cd6d3bb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))" [tool.poetry] name = "rasa-sdk" -version = "3.2.1" +version = "3.3.0" 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 ",] @@ -68,9 +68,6 @@ coloredlogs = ">=10,<16" sanic = "^21.12.0" typing-extensions = ">=3.7.4,<5.0.0" Sanic-Cors = "^2.0.0" -# there is currently an issue with 3.0.29 as it changes the unit test -# interface for testing CLI interactions. this change breaks our unit -# tests in rasa-oss. prompt-toolkit = "^3.0,<3.0.29" [tool.poetry.dev-dependencies] diff --git a/rasa_sdk/version.py b/rasa_sdk/version.py index 05910085a..91be6b962 100644 --- a/rasa_sdk/version.py +++ b/rasa_sdk/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "3.2.1" +__version__ = "3.3.0"