diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3cfe36c102a9..386e40d691e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,21 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0. .. towncrier release notes start +[1.7.2] - 2020-02-13 +^^^^^^^^^^^^^^^^^^^^ + +Bugfixes +-------- +- `#5197 `_: Fixed incompatibility of Oracle with the :ref:`sql-tracker-store`, by using a ``Sequence`` + for the primary key columns. This does not change anything for SQL databases other than Oracle. + If you are using Oracle, please create a sequence with the instructions in the :ref:`sql-tracker-store` docs. + +Improved Documentation +---------------------- +- `#5197 `_: Added section on setting up the SQLTrackerStore with Oracle +- `#5210 `_: Renamed "Running the Server" page to "Configuring the HTTP API" + + [1.7.1] - 2020-02-11 ^^^^^^^^^^^^^^^^^^^^ diff --git a/changelog/5197.bugfix.rst b/changelog/5197.bugfix.rst deleted file mode 100644 index 73ba13397798..000000000000 --- a/changelog/5197.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fixed incompatibility of Oracle with the :ref:`sql-tracker-store`, by using a ``Sequence`` -for the primary key columns. This does not change anything for SQL databases other than Oracle. -If you are using Oracle, please create a sequence with the instructions in the docs -:ref:`oracle-configuration`. diff --git a/changelog/5197.doc.rst b/changelog/5197.doc.rst deleted file mode 100644 index 70e27737f43e..000000000000 --- a/changelog/5197.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added section on setting up the SQLTrackerStore with Oracle diff --git a/changelog/5210.doc.rst b/changelog/5210.doc.rst deleted file mode 100644 index ca7fc930d35c..000000000000 --- a/changelog/5210.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Renamed "Running the Server" page to "Configuring the HTTP API" diff --git a/docs/api/tracker-stores.rst b/docs/api/tracker-stores.rst index 51a9c1f1238c..c236bea782d8 100644 --- a/docs/api/tracker-stores.rst +++ b/docs/api/tracker-stores.rst @@ -78,8 +78,6 @@ SQLTrackerStore - Oracle > 11.0 - SQLite -.. _oracle-configuration: - :Oracle Configuration: To use the SQLTrackerStore with Oracle, there are a few additional steps. First, create a database ``tracker`` in your Oracle database and create a user with access to it. diff --git a/rasa/version.py b/rasa/version.py index 554f38b23537..c32ce8a0b528 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__ = "1.7.1" +__version__ = "1.7.2"