diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c43b0ca..915204bd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.16.0 + +* BREAKING CHANGE: Consolidate `input` family of functions + * These now take a record of options + * This also `_stack` field of the `Status` type from `[Import]` to + `NonEmpty Import` +* Permit `$` in quoted variable names + * See: https://github.com/dhall-lang/dhall-haskell/pull/510 + 1.15.1 * Fix infinite loop when formatting expressions containing `?` diff --git a/README.md b/README.md index 76b6b67fc..09fd9a6a4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `dhall 1.15.1` +# `dhall 1.16.0` `dhall` is a total programming language specialized to configuration files diff --git a/dhall.cabal b/dhall.cabal index 3e5fd1840..dbcc1aef6 100644 --- a/dhall.cabal +++ b/dhall.cabal @@ -1,5 +1,5 @@ Name: dhall -Version: 1.15.1 +Version: 1.16.0 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.0.1 diff --git a/nix/dhall.nix b/nix/dhall.nix index e7fbea626..cc89c6255 100644 --- a/nix/dhall.nix +++ b/nix/dhall.nix @@ -9,7 +9,7 @@ }: mkDerivation { pname = "dhall"; - version = "1.15.1"; + version = "1.16.0"; src = ./..; isLibrary = true; isExecutable = true;