diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 83f141142..c4cfb1c58 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,17 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.4.0] - 2022-11-23 + +Rasa_Sdk 3.4.0 (2022-11-23) +### Improvements +- [#877](https://github.com/rasahq/rasa-sdk/issues/877): Added CLI option `--logging-config-file` to enable configuration of custom logs formatting. +- [#888](https://github.com/rasahq/rasa-sdk/issues/888): Add support for Python 3.10 version. + +### Miscellaneous internal changes +- [#884](https://github.com/rasahq/rasa-sdk/issues/884) + + ## [3.3.0] - 2022-10-06 Rasa_Sdk 3.3.0 (2022-10-06) No significant changes. diff --git a/changelog/877.improvement.md b/changelog/877.improvement.md deleted file mode 100644 index ce19b00ff..000000000 --- a/changelog/877.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Added CLI option `--logging-config-file` to enable configuration of custom logs formatting. diff --git a/changelog/884.misc.md b/changelog/884.misc.md deleted file mode 100644 index e5260671d..000000000 --- a/changelog/884.misc.md +++ /dev/null @@ -1,2 +0,0 @@ -Upgraded poetry version and poetry installer used in the CI. -Amended lower bound constraint for typing-extensions dependency. diff --git a/changelog/888.improvement.md b/changelog/888.improvement.md deleted file mode 100644 index 784626a5e..000000000 --- a/changelog/888.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Add support for Python 3.10 version. diff --git a/pyproject.toml b/pyproject.toml index 04d229732..ede8af840 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "poetry.core.masonry.api" [tool.black] line-length = 88 -target-version = [ "py37", "py38", "py39", "py310"] +target-version = [ "py37", "py38", "py39", "py310",] exclude = "((.eggs | .git | .mypy_cache | .pytest_cache | build | dist))" [tool.poetry] name = "rasa-sdk" -version = "3.3.0" +version = "3.4.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 ",] diff --git a/rasa_sdk/version.py b/rasa_sdk/version.py index 91be6b962..60f40b7e4 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.3.0" +__version__ = "3.4.0"