diff --git a/VERSION b/VERSION index 33f31bc70d87..b965ab81cfe5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.13.20 +0.13.21 diff --git a/docs/source/support/release-notes.rst b/docs/source/support/release-notes.rst index 3522907b03fa..f1784e90ce67 100644 --- a/docs/source/support/release-notes.rst +++ b/docs/source/support/release-notes.rst @@ -6,6 +6,32 @@ Release notes This page contains release notes for the SDK. +.. _release-0-13-21: + +0.13.21 - 2019-08-29 +-------------------- + +DAML Compiler +~~~~~~~~~~~~~ + +- Enable the language extension ``FlexibleContexts`` by default. +- **BREAKING CHANGE** Enable the language extension ``MonoLocalBinds`` by default. ``let`` and ``where`` bindings introducing polymorphic functions that are used at different types now need an explicit type annotation. Without the type annotation the type of the first use site will be inferred and use sites at different types will fail with a type mismatch error. + +Java Codegen +~~~~~~~~~~~~ + +- Fix bug that caused the generation of duplicate methods that affected sources with data constructors with type parameters that are either non-unique or not presented in the same order as in the corresponding data type declaration. See `#2367 `__. + +Ledger +~~~~~~ + +- H2 Database support in the Ledger API Server. + +Sandbox +~~~~~~~ + +- The sandbox now properly sets the connection pool properties ``minimumIdle``, ``maximumPoolSize``, and ``connectionTimeout``. + .. _release-0-13-20: 0.13.20 - 2019-08-22 diff --git a/unreleased.rst b/unreleased.rst index c2c8f2a388af..c02fc9caf09f 100644 --- a/unreleased.rst +++ b/unreleased.rst @@ -8,10 +8,3 @@ This page contains release notes for the SDK. HEAD — ongoing -------------- - -+ [Sandbox] The sandbox now properly sets the connection pool properties ``minimumIdle``, ``maximumPoolSize``, and ``connectionTimeout``. -+ [Java codegen] Fix bug caused the generation of duplicate methods that affected sources with data constructors with type parameters that are either non-unique or not presented in the same order as in the corresponding data type declaration. See `#2367 `__. -* [Dev Tooling] `daml-sdk-head` now installs current-workdir versions of all the published JARs (as version `100.0.0`) to the local Maven repo (`~/.m2`), to allow local testing of unreleased versions of the SDK against JVM-based applications. (Disable with `--skip-jars`) -+ [DAML Compiler] Enable the language extension ``FlexibleContexts`` by default. -+ [DAML Compiler] **BREAKING CHANGE** Enable the language extension ``MonoLocalBinds`` by default. ``let`` and ``where`` bindings introducing polymorphic functions that are used at different types now need an explicit type annotation. Without the type annotation the type of the first use site will be inferred and use sites at different types will fail with a type mismatch error. -+ [Ledger] H2 Database support in the Ledger API Server.