Version 1.7.0 → 1.8.0 (#173)

This commit is contained in:
Gabriel Gonzalez 2017-11-03 20:22:43 -07:00 committed by GitHub
parent a0bc3b02da
commit b6ca7d22f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 3 deletions

View File

@ -1,3 +1,17 @@
1.8.0
* BREAKING CHANGE TO LANGUAGE: Add support for import integrity checks
* In practice, the likelihood of this breaking code in the wild is
astronomically low
* This would only break code of the form `sha256:aaa...aaa` (i.e. a
variabled named `sha256` with a type annotation for a type with a name
64 characters long drawn from the first 6 characters of the alphabet)
* BUG FIX: Fix parsing of single quotes in single-quoted strings
* BUG FIX: Fix superfluous parentheses introduced by `dhall-format`
* New `dhall-hash` executable
* This goes hand-in-hand with the added support for integrity checks since
the executable lets you compute the current hash of an import
1.7.0
* BREAKING CHANGE TO LANGUAGE: Update parser to match standardized grammar

View File

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

View File

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

View File

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