Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `dhall 1.16.0`
# `dhall 1.16.1`

`dhall` is a total programming language specialized to configuration files

Expand Down
3 changes: 2 additions & 1 deletion dhall.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion nix/dhall.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}:
mkDerivation {
pname = "dhall";
version = "1.16.0";
version = "1.16.1";
src = ./..;
isLibrary = true;
isExecutable = true;
Expand Down