Skip to content

Commit f7fecda

Browse files
authored
Version 1.21.0 → 1.22.0 (#910)
1 parent d3d7baf commit f7fecda

File tree

8 files changed

+50
-10
lines changed

8 files changed

+50
-10
lines changed

dhall-bash/dhall-bash.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-bash
2-
Version: 1.0.19
2+
Version: 1.0.20
33
Cabal-Version: >=1.8.0.2
44
Build-Type: Simple
55
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
@@ -31,7 +31,7 @@ Library
3131
base >= 4.8.0.0 && < 5 ,
3232
bytestring < 0.11,
3333
containers < 0.7 ,
34-
dhall >= 1.18.0 && < 1.22,
34+
dhall >= 1.22.0 && < 1.23,
3535
neat-interpolation < 0.4 ,
3636
shell-escape < 0.3 ,
3737
text >= 0.2 && < 1.3

dhall-json/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
1.2.8
2+
3+
* New `json-to-dhall` command-line utility
4+
* See: https://github.com/dhall-lang/dhall-haskell/pull/884
5+
* `--omitEmpty` now also omits empty arrays
6+
* See: https://github.com/dhall-lang/dhall-haskell/pull/872
7+
* Build against `dhall-1.22.0`
8+
* Improved error messages:
9+
* See: https://github.com/dhall-lang/dhall-haskell/pull/895
10+
* See: https://github.com/dhall-lang/dhall-haskell/pull/900
11+
112
1.2.7
213

314
* Build against `dhall-1.21.0`

dhall-json/dhall-json.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-json
2-
Version: 1.2.7
2+
Version: 1.2.8
33
Cabal-Version: >=1.8.0.2
44
Build-Type: Simple
55
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
@@ -35,7 +35,7 @@ Library
3535
Build-Depends:
3636
base >= 4.8.0.0 && < 5 ,
3737
aeson >= 1.0.0.0 && < 1.5 ,
38-
dhall >= 1.19.0 && < 1.22,
38+
dhall >= 1.22.0 && < 1.23,
3939
optparse-applicative >= 0.14.0.0 && < 0.15,
4040
text >= 0.11.1.0 && < 1.3 ,
4141
unordered-containers < 0.3

dhall-nix/dhall-nix.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-nix
2-
Version: 1.1.6
2+
Version: 1.1.7
33
Cabal-Version: >=1.8.0.2
44
Build-Type: Simple
55
Tested-With: GHC == 8.0.1
@@ -30,7 +30,7 @@ Library
3030
base >= 4.8.0.0 && < 5 ,
3131
containers < 0.7 ,
3232
data-fix < 0.3 ,
33-
dhall >= 1.19 && < 1.22,
33+
dhall >= 1.22 && < 1.23,
3434
hnix >= 0.5 && < 0.7 ,
3535
neat-interpolation < 0.4 ,
3636
text >= 0.8.0.0 && < 1.3

dhall-text/dhall-text.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-text
2-
Version: 1.0.16
2+
Version: 1.0.17
33
Cabal-Version: >=1.8.0.2
44
Build-Type: Simple
55
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1
@@ -25,7 +25,7 @@ Executable dhall-to-text
2525
Main-Is: Main.hs
2626
Build-Depends:
2727
base >= 4.8.0.0 && < 5 ,
28-
dhall >= 1.15.0 && < 1.22,
28+
dhall >= 1.15.0 && < 1.23,
2929
optparse-applicative < 0.15,
3030
text >= 0.11.1.0 && < 1.3
3131
GHC-Options: -Wall

dhall-try/dhall-try.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ executable dhall-try
1616
main-is: Main.hs
1717
build-depends: base >= 4.11.0.0 && < 5
1818
, aeson-pretty >= 0.8.7 && < 0.9
19-
, dhall >= 1.19.0 && < 1.22
19+
, dhall >= 1.19.0 && < 1.23
2020
, dhall-json >= 1.2.5 && < 1.3
2121
, prettyprinter >= 1.2.1 && < 1.3
2222
, text >= 1.2.3.0 && < 1.3

dhall/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
1.22.0
2+
3+
* Supports version 7.0.0 of the standard
4+
* See: https://github.com/dhall-lang/dhall-lang/releases/tag/v7.0.0
5+
* BREAKING CHANGE: Remove deprecated `Path` type synonym
6+
* See: https://github.com/dhall-lang/dhall-haskell/pull/858
7+
* BUG FIX: Correctly parse identifiers beginning with `http`
8+
* i.e. `httpPort` was supposed to be a valid identifier name and now is
9+
* See: https://github.com/dhall-lang/dhall-haskell/pull/870
10+
* BUG FIX: Fix `dhall encode` bug
11+
* `dhall encode` bug was generating binary expressions that were valid
12+
(i.e. they would decode correctly) but were non-standard (i.e. hashing
13+
them would not match the hash you would normally get from a semantic
14+
integrity check)
15+
* Semantic integrity checks were not affected by this bug since they used
16+
a slightly different code path that generated the correct binary input to
17+
the hash. Only the `dhall decode` subcommand was affected
18+
* See: https://github.com/dhall-lang/dhall-haskell/pull/859
19+
* BUG FIX: Fix for `Dhall.UnionType`
20+
* This fixes some expressions that would previously fail to marshal into
21+
Haskell, specifically those were the marshalling logic was built using
22+
the `UnionType` utilities
23+
* See: https://github.com/dhall-lang/dhall-haskell/pull/857
24+
* Feature: New `--alpha` flag to α-normalize command-line output
25+
* See: https://github.com/dhall-lang/dhall-haskell/pull/855
26+
* Performance improvements
27+
* The normalizer is now *much* faster
28+
* See: https://github.com/dhall-lang/dhall-haskell/pull/876
29+
130
1.21.0
231

332
* Supports version 6.0.0 of the language standard

dhall/dhall.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall
2-
Version: 1.21.0
2+
Version: 1.22.0
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1

0 commit comments

Comments
 (0)