diff --git a/VERSION b/VERSION index 0a4026fbe8..15ee59a8b6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.13.31 +0.13.32 diff --git a/docs/source/support/release-notes.rst b/docs/source/support/release-notes.rst index d9c8433698..97e42fbb07 100644 --- a/docs/source/support/release-notes.rst +++ b/docs/source/support/release-notes.rst @@ -6,6 +6,31 @@ Release notes This page contains release notes for the SDK. +.. _release-0-13-32: + +0.13.32 - 2019-10-29 +-------------------- + +DAML Triggers +~~~~~~~~~~~~~ + +- The trigger runner now supports triggers using the high-level API directly. These no longer need to be converted to low-level Triggers using ``runTrigger``. Triggers using the low-level API are still supported. +- The trigger runner has a new command that just lists the triggers in + a dar using ``daml trigger list --dar path/to/dar``. + +DAML Compiler +~~~~~~~~~~~~~ + +- The package database is now be cleaned automatically on initialization. + This means that you should no longer have to run ``daml clean`` on SDK upgrades + if you use DAR dependencies (e.g. with DAML triggers). + +Sandbox +~~~~~~~ + +- Improve performance of looking up contracts from postgres. See `issue #2330 `__. + + .. _release-0-13-31: 0.13.31 - 2019-10-18 diff --git a/unreleased.rst b/unreleased.rst index 6773615155..c02fc9caf0 100644 --- a/unreleased.rst +++ b/unreleased.rst @@ -8,8 +8,3 @@ This page contains release notes for the SDK. HEAD — ongoing -------------- -- [DAML Triggers] The trigger runner now supports triggers using the high-level API directly. These no longer need to be converted to low-level Triggers using ``runTrigger``. Triggers using the low-level API are still supported. -- [DAML Compiler] The package database is now be cleaned automatically on initialization. - This means that you should no longer have to run ``daml clean`` on SDK upgrades - if you use DAR dependencies (e.g. with DAML triggers). -- [Sandbox] Improve performance of looking up contracts from postgres. See `issue #2330 `__.