From 1484efd3b40a68e9b881726e128437398a9d1f4f Mon Sep 17 00:00:00 2001 From: Anca Lita <27920906+ancalita@users.noreply.github.com> Date: Fri, 23 Jun 2023 09:22:40 +0100 Subject: [PATCH] prepared release of version 3.5.12 --- CHANGELOG.mdx | 11 +++++++++++ changelog/12512.misc.md | 1 - changelog/12534.bugfix.md | 2 -- pyproject.toml | 2 +- rasa/version.py | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 changelog/12512.misc.md delete mode 100644 changelog/12534.bugfix.md diff --git a/CHANGELOG.mdx b/CHANGELOG.mdx index bce523aa28c7..46f3efeb9183 100644 --- a/CHANGELOG.mdx +++ b/CHANGELOG.mdx @@ -16,6 +16,17 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . --> +## [3.5.12] - 2023-06-23 + +Rasa 3.5.12 (2023-06-23) +### Bugfixes +- [#12534](https://github.com/rasahq/rasa/issues/12534): Rich responses containing buttons with parentheses characters are now correctly parsed. + Previously any characters found between the first identified pair of `()` in response button took precedence. + +### Miscellaneous internal changes +- [#12512](https://github.com/rasahq/rasa/issues/12512) + + ## [3.5.11] - 2023-06-08 Rasa 3.5.11 (2023-06-08) diff --git a/changelog/12512.misc.md b/changelog/12512.misc.md deleted file mode 100644 index f7b599c806d4..000000000000 --- a/changelog/12512.misc.md +++ /dev/null @@ -1 +0,0 @@ -Add plugin hook for getting the license hash from Rasa Plus and add the hash to telemetry context. diff --git a/changelog/12534.bugfix.md b/changelog/12534.bugfix.md deleted file mode 100644 index 27c8c3c85220..000000000000 --- a/changelog/12534.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -Rich responses containing buttons with parentheses characters are now correctly parsed. -Previously any characters found between the first identified pair of `()` in response button took precedence. diff --git a/pyproject.toml b/pyproject.toml index fb5f742f280f..b455ae450f25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytest_cache | build | dist))" [tool.poetry] name = "rasa" -version = "3.5.11" +version = "3.5.12" 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/version.py b/rasa/version.py index 60754d26bf48..39555a257e8f 100644 --- a/rasa/version.py +++ b/rasa/version.py @@ -1,3 +1,3 @@ # this file will automatically be changed, # do not add anything but the version number here! -__version__ = "3.5.11" +__version__ = "3.5.12"