diff --git a/CHANGELOG.md b/CHANGELOG.md index 915204b..eb0129f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.16.1 + +* Fix test failure due to missing test data file + 1.16.0 * BREAKING CHANGE: Consolidate `input` family of functions diff --git a/README.md b/README.md index 09fd9a6..d0a0904 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `dhall 1.16.0` +# `dhall 1.16.1` `dhall` is a total programming language specialized to configuration files diff --git a/dhall.cabal b/dhall.cabal index dbcc1ae..23d31bd 100644 --- a/dhall.cabal +++ b/dhall.cabal @@ -1,5 +1,5 @@ Name: dhall -Version: 1.16.0 +Version: 1.16.1 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.0.1 @@ -153,6 +153,7 @@ Extra-Source-Files: tests/typecheck/*.dhall tests/typecheck/examples/Monoid/*.dhall tests/import/*.dhall + tests/import/data/foo/bar/a.dhall benchmark/examples/*.dhall benchmark/deep-nested-large-record/*.dhall diff --git a/nix/dhall.nix b/nix/dhall.nix index cc89c62..da225bf 100644 --- a/nix/dhall.nix +++ b/nix/dhall.nix @@ -9,7 +9,7 @@ }: mkDerivation { pname = "dhall"; - version = "1.16.0"; + version = "1.16.1"; src = ./..; isLibrary = true; isExecutable = true;