|
| 1 | +1.11.0 |
| 2 | + |
| 3 | +* BREAKING CHANGE TO THE API: Fix `{Natural,Optional,List}/build` semantics to |
| 4 | + match standard |
| 5 | + * This is a breaking change because the `OptionalLit` and `ListLit` |
| 6 | + constructors changed their representations to efficiently support the |
| 7 | + standard semantics |
| 8 | + * `ListLit` now stores a `Data.Sequence.Seq` instead of a |
| 9 | + `Data.Vector.Vector` |
| 10 | + * `OptionalLit` now stores a `Maybe` instead of a `Data.Vector.Vector` |
| 11 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/300 |
| 12 | +* BREAKING CHANGE TO THE COMMAND LINE: `dhall` executable always formats output |
| 13 | + * Previously you had to opt into formatting using `--pretty` |
| 14 | + * Now formatting is obligatory and the `--pretty` flag is gone |
| 15 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/303 |
| 16 | +* Feature: New `:save` command for `dhall-repl` |
| 17 | + * Now you can save an expression to a file: `./yourFile = someExpression` |
| 18 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/309 |
| 19 | +* Improvement: Add new simplifications to match standard |
| 20 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/312 |
| 21 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/316 |
| 22 | +* Improvement: Fix equivalence check to match standard |
| 23 | + * Practically this means that more corner cases of the language correctly |
| 24 | + type-check than before |
| 25 | +* Improvement: New `--plain` flag to disable syntax highlighting |
| 26 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/310 |
| 27 | +* Improvement: Prelude now provides an umbrella `package.dhall` import |
| 28 | + * This is primarily for convenience |
| 29 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/298 |
| 30 | +* Improvement: Context is now normalized |
| 31 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/302 |
| 32 | +* Replace `cryptohash` dependency with `cryptonite` |
| 33 | + * See: https://github.com/dhall-lang/dhall-haskell/commit/5d2012927a062ec8bdf2bbaba77150344f38db77 |
| 34 | +* Increase upper bound on exceptions |
| 35 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/306 |
| 36 | +* Fix type error in tutorial |
| 37 | + * See: https://github.com/dhall-lang/dhall-haskell/commit/5a9126b2f684d3236fc1e8e20e206cfaf47d97db |
| 38 | + |
1 | 39 | 1.10.0
|
2 | 40 |
|
3 | 41 | * Feature: Records/unions can now have fields/alternatives that are types
|
|
0 commit comments