diff --git a/dhall/CHANGELOG.md b/dhall/CHANGELOG.md index 9b2498fac..800f72a1c 100644 --- a/dhall/CHANGELOG.md +++ b/dhall/CHANGELOG.md @@ -1,3 +1,21 @@ +1.37.2 + +* [BUG FIX: Fix CORS compliance check](https://github.com/dhall-lang/dhall-haskell/pull/2121) + * Previous versions were not correctly enforcing CORS compliance + * This implies that some imports that would have worked previously by + accident will now fail; specifically: an import from one domain + transitively importing something from another domain that has not opted + into CORS +* [Detect preferred character set from input](https://github.com/dhall-lang/dhall-haskell/pull/2108) + * `dhall format` will now preserve the character set of the formatted file + by default. In other words, if the file uses ASCII punctuation then + `dhall format` will format the file using ASCII punctuation. + * If the file contains both ASCII and Unicode punctuation it will prefer + Unicode by default +* [Add `ToDhall (Fix f)` instance](https://github.com/dhall-lang/dhall-haskell/pull/2122) +* Fixes and improvements to error messages + * [#2130](https://github.com/dhall-lang/dhall-haskell/pull/2130) + 1.37.1 * [Fix performance regression for `with` expressions](https://github.com/dhall-lang/dhall-haskell/pull/2112) diff --git a/dhall/dhall.cabal b/dhall/dhall.cabal index 60796e0a9..d2e424c82 100644 --- a/dhall/dhall.cabal +++ b/dhall/dhall.cabal @@ -1,5 +1,5 @@ Name: dhall -Version: 1.37.1 +Version: 1.37.2 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.4.3, GHC == 8.6.1