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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `?`
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.15.1`
# `dhall 1.16.0`

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

Expand Down
2 changes: 1 addition & 1 deletion dhall.cabal
Original file line number Diff line number Diff line change
@@ -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
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.15.1";
version = "1.16.0";
src = ./..;
isLibrary = true;
isExecutable = true;
Expand Down