diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1f55cbc39..c380bcde1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,16 @@ This project adheres to `Semantic Versioning`_ starting with version 0.11.0. .. towncrier release notes start +[1.9.0] - 2020-03-24 +^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#110 `_: Exit program (``python -m rasa_sdk --actions actions`` or + ``rasa run actions --actions actions``) if a requested module under the + ``--actions`` command-line option cannot be found. + + [1.8.1] - 2020-03-09 ^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/110.bugfix.rst b/changelog/110.bugfix.rst deleted file mode 100644 index a5823e373..000000000 --- a/changelog/110.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Exit program (``python -m rasa_sdk --actions actions`` or -``rasa run actions --actions actions``) if a requested module under the -``--actions`` command-line option cannot be found. diff --git a/pyproject.toml b/pyproject.toml index 9f522facc..8b1ce239b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "rasa-sdk" -version = "1.8.1" +version = "1.9.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 adb5c42fd..8c0046442 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__ = "1.8.1" +__version__ = "1.9.0"