Version 1.4.2 => 1.5.0

This commit is contained in:
Gabriel Gonzalez 2017-07-25 20:11:53 -07:00
parent 8b3ebbc832
commit 12ad893605
4 changed files with 18 additions and 3 deletions

View File

@ -1,3 +1,18 @@
1.5.0
* BREAKING CHANGE: Add list concatenation operator: `(#)`
* This is a breaking change because it adds a new constructor to the `Expr`
type which breaks exhaustive pattern matches
* BREAKING CHANGE: Add `Interpret` support for lazy `Text`
* This is a breaking change because it renames `text` to `strictText`
* Add `Interpret` instance for decoding (a limited subset of) Dhall functions
* Dhall no longer requires Template Haskell to compile
* This helps with cross-compilation
* Add `rawInput` utility for decoding a Haskell value from the `Expr` type
* Add `loadWith`/`normalizeWith` utilities for normalizing/importing modules
with a custom context
* Export `Type` constructor
1.4.2
* Fix missing `Prelude` files in package archive uploaded to Hackage

View File

@ -1,4 +1,4 @@
# `dhall 1.4.2`
# `dhall 1.5.0`
`dhall` is a total programming language specialized to configuration files

View File

@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "dhall";
version = "1.4.2";
version = "1.5.0";
src = ./.;
isLibrary = true;
isExecutable = true;

View File

@ -1,5 +1,5 @@
Name: dhall
Version: 1.4.2
Version: 1.5.0
Cabal-Version: >=1.8.0.2
Build-Type: Simple
Tested-With: GHC == 7.10.2, GHC == 8.0.1