Skip to content

Commit

Permalink
Merge pull request #417 from RasaHQ/prepare-release-2.4.0
Browse files Browse the repository at this point in the history
Prepare release 2.4.0
  • Loading branch information
Dominique authored Mar 11, 2021
2 parents 4620e9a + ff09e8f commit f888e3a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 17 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ repos:
rev: stable
hooks:
- id: black
language_version: python3.6
19 changes: 19 additions & 0 deletions CHANGELOG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,25 @@ https://github.com/RasaHQ/rasa/tree/main/changelog/ . -->

<!-- TOWNCRIER -->

## [2.4.0] - 2021-03-11


### Bugfixes
- [#406](https://github.com/rasahq/rasa/issues/406): Fix bug where ActionQueryKnowledgeBase incorrectly issues a template message with the string representation of the function for getting the string representation of the knowledge base item and not the actual string representation of the knowledge base item.

For example, before the fix, the query knowledge base demo bot would utter this

```
'<function ActionMyKB.init.. at 0x7fb23b7fddd0>' has the value 'True' for attribute 'breakfast-included'.
```

instead of this:

```
'Hilton (Berlin)' has the value 'True' for attribute 'breakfast-included'.
```


## [2.3.1] - 2021-02-11


Expand Down
13 changes: 0 additions & 13 deletions changelog/406.bugfix.md

This file was deleted.

3 changes: 1 addition & 2 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.1"
version = "2.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 <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>",]
Expand Down Expand Up @@ -85,7 +85,6 @@ semantic_version = "^2.8.5"
typing-extensions = "^3.7.4"
mypy = "^0.812"

# 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.1"
__version__ = "2.4.0"

0 comments on commit f888e3a

Please sign in to comment.