Skip to content

Commit

Permalink
Merge pull request #200 from RasaHQ/prepare-release-1.10.0
Browse files Browse the repository at this point in the history
prepared release of version 1.10.0
  • Loading branch information
m-vdb authored Apr 28, 2020
2 parents 93447c8 + 0907250 commit d330491
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 14 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,31 @@ This project adheres to `Semantic Versioning`_ starting with version 0.11.0.
.. towncrier release notes start
[1.10.0] - 2020-04-28
^^^^^^^^^^^^^^^^^^^^^

Features
--------
- `#164 <https://github.com/rasahq/rasa/issues/164>`_: Added new ``--auto-reload`` CLI argument. When specified, modules containing ``Action``
subclasses will be automatically reloaded if they have been modified since the last HTTP
request. By using this, one can avoid having to re-start the actions server when
developing new actions.
- `#3765 <https://github.com/rasahq/rasa/issues/3765>`_: Add support for entities with role and group labels.

If you use ``from_entity`` in your custom slot mapping, you can now also specify a role and group label.
If you set a role or group label, the slot is only filled if the entity has the specific role or group label set.
If you don't specify a role or group label, the function behaves as before.

Improvements
------------
- `#176 <https://github.com/rasahq/rasa/issues/176>`_: The Rasa SDK image now uses Python 3.7 instead of Python 3.6.

Bugfixes
--------
- `#176 <https://github.com/rasahq/rasa/issues/176>`_: Updated ``pyyaml`` dependency to ``5.3.1`` to fix
`CVE-2020-1747 <https://security-tracker.debian.org/tracker/CVE-2020-1747>`_


[1.9.0] - 2020-03-24
^^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 0 additions & 4 deletions changelog/164.feature.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/176.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/176.improvement.rst

This file was deleted.

5 changes: 0 additions & 5 deletions changelog/3765.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "rasa-sdk"
version = "1.9.0"
version = "1.10.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
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__ = "1.9.0"
__version__ = "1.10.0"

0 comments on commit d330491

Please sign in to comment.