Skip to content

Commit

Permalink
Release DAML SDK 0.13.21 (digital-asset#2693)
Browse files Browse the repository at this point in the history
  • Loading branch information
hurryabit authored Aug 29, 2019
1 parent ed73c85 commit c3f394e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.13.20
0.13.21
26 changes: 26 additions & 0 deletions docs/source/support/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/digital-asset/daml/issues/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
Expand Down
7 changes: 0 additions & 7 deletions unreleased.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/digital-asset/daml/issues/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.

0 comments on commit c3f394e

Please sign in to comment.