Skip to content

Commit 976aa76

Browse files
committed
prepared release of version 1.9.7
1 parent 984a07f commit 976aa76

File tree

6 files changed

+26
-13
lines changed

6 files changed

+26
-13
lines changed

CHANGELOG.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,30 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0.
1717

1818
.. towncrier release notes start
1919
20+
[1.9.7] - 2020-04-23
21+
^^^^^^^^^^^^^^^^^^^^
22+
23+
Improvements
24+
------------
25+
- `#4606 <https://github.com/rasahq/rasa/issues/4606>`_: The stream reading timeout for ``rasa shell` is now configurable by using the
26+
environment variable ``RASA_SHELL_STREAM_READING_TIMEOUT_IN_SECONDS``.
27+
This can help to fix problems when using ``rasa shell`` with custom actions which run
28+
10 seconds or longer.
29+
30+
Bugfixes
31+
--------
32+
- `#5709 <https://github.com/rasahq/rasa/issues/5709>`_: Reverted changes in 1.9.6 that led to model incompatibility. Upgrade to 1.9.7 to fix
33+
``self.sequence_lengths_for(tf_batch_data[TEXT_SEQ_LENGTH][0]) IndexError: list index out of range``
34+
error without needing to retrain earlier 1.9 models.
35+
36+
Therefore, all 1.9 models `except for 1.9.6` will be compatible; a model trained on 1.9.6 will need
37+
to be retrained on 1.9.7.
38+
39+
Miscellaneous internal changes
40+
------------------------------
41+
- #5631
42+
43+
2044
[1.9.6] - 2020-04-15
2145
^^^^^^^^^^^^^^^^^^^^
2246

changelog/4606.improvement.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog/5631.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/5709.bugfix.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))"
99

1010
[tool.poetry]
1111
name = "rasa"
12-
version = "1.9.6"
12+
version = "1.9.7"
1313
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"
1414
authors = [ "Rasa Technologies GmbH <[email protected]>",]
1515
maintainers = [ "Tom Bocklisch <[email protected]>",]

rasa/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# this file will automatically be changed,
22
# do not add anything but the version number here!
3-
__version__ = "1.9.6"
3+
__version__ = "1.9.7"

0 commit comments

Comments
 (0)