diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index 128b57692..a126d645d 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -17,6 +17,14 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.7.0] - 2023-11-22 + +Rasa_Sdk 3.7.0 (2023-11-22) +### Features +- [#1016](https://github.com/rasahq/rasa-sdk/issues/1016): Added tracing functionality to the Rasa SDK, bringing enhanced monitoring, execution profiling and debugging capabilities to the Rasa Actions Server. + See [Rasa Documentation on Tracing](https://rasa.com/docs/rasa/monitoring/tracing/#configuring-a-tracing-backend-or-collector) to know more about configuring a tracing backend or collector. + + ## [3.6.1] - 2023-07-11 Rasa_Sdk 3.6.1 (2023-07-11) diff --git a/changelog/1016.feature.md b/changelog/1016.feature.md deleted file mode 100644 index 1e8deacc8..000000000 --- a/changelog/1016.feature.md +++ /dev/null @@ -1,2 +0,0 @@ -Added tracing functionality to the Rasa SDK, bringing enhanced monitoring, execution profiling and debugging capabilities to the Rasa Actions Server. -See [Rasa Documentation on Tracing](https://rasa.com/docs/rasa/monitoring/tracing/#configuring-a-tracing-backend-or-collector) to know more about configuring a tracing backend or collector. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ab92289ab..cbd657695 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.7.0rc4" +version = "3.7.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 122f29e62..839862d93 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.7.0rc4" +__version__ = "3.7.0"