Skip to content

Commit addf2ba

Browse files
authored
Version 1.42.1 → 1.42.2 (#2629)
1 parent 016d97e commit addf2ba

File tree

11 files changed

+44
-7
lines changed

11 files changed

+44
-7
lines changed

dhall-docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.0.12
2+
3+
* [Fix white flashes on page load in dark mode](https://github.com/dhall-lang/dhall-haskell/pull/2574)
4+
* [Render standalone text files as preformatted text](https://github.com/dhall-lang/dhall-haskell/pull/2565)
5+
* [Render Markdown files as HTML](https://github.com/dhall-lang/dhall-haskell/pull/2579)
6+
* [Default to browser settings for dark mode](https://github.com/dhall-lang/dhall-haskell/pull/2582)
7+
* [Fix typo and formatting in a warning message](https://github.com/dhall-lang/dhall-haskell/pull/2572)
8+
19
1.0.11
210

311
* Build against `dhall-1.42`

dhall-docs/dhall-docs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-docs
2-
Version: 1.0.11
2+
Version: 1.0.12
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
License: BSD3

dhall-json/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.7.13
2+
3+
* [Export `UnionConv`](https://github.com/dhall-lang/dhall-haskell/pull/2570)
4+
15
1.7.12
26

37
* Build against `dhall-1.42`

dhall-lsp-server/dhall-lsp-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dhall-lsp-server
2-
Version: 1.1.3
2+
Version: 1.1.4
33
cabal-version: 1.12
44
synopsis: Language Server Protocol (LSP) server for Dhall
55
homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme

dhall-nix/dhall-nix.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-nix
2-
Version: 1.1.26
2+
Version: 1.1.27
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
License: BSD3

dhall-openapi/dhall-openapi.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Cabal-Version: 1.11
22
Name: dhall-openapi
3-
Version: 1.0.6
3+
Version: 1.0.7
44
Homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-openapi#dhall-openapi
55
Author: Fabrizio Ferrai
66
Maintainer: [email protected]

dhall-toml/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.4
2+
3+
* [Add support for `Prelude.Map.Type`](https://github.com/dhall-lang/dhall-haskell/pull/2549)
4+
* [Fix loading of relative paths](https://github.com/dhall-lang/dhall-haskell/pull/2607)
5+
16
1.0.3
27

38
* [Support `Integer`s](https://github.com/dhall-lang/dhall-haskell/pull/2469)

dhall-toml/dhall-toml.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dhall-toml
2-
Version: 1.0.3
2+
Version: 1.0.4
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
License: BSD3

dhall/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
1.42.2
2+
3+
* [Supports standard version 23.1.0](https://github.com/dhall-lang/dhall-lang/releases/tag/v23.1.0)
4+
* [Allow `Natural` and `Integer` literals in binary notation](https://github.com/dhall-lang/dhall-haskell/pull/2540)
5+
* Fix macOS build [[#2561](https://github.com/dhall-lang/dhall-haskell/pull/2561)] / [[#2586](https://github.com/dhall-lang/dhall-haskell/pull/2586)]
6+
* [`dhall to-directory-tree`: Fix support for empty `Map`s](https://github.com/dhall-lang/dhall-haskell/pull/2609)
7+
* [`Dhall.TH`: Improve recompilation checking](https://github.com/dhall-lang/dhall-haskell/pull/2620)
8+
* `Dhall.TH` utilities now use `addDependentFile` internally so that GHC will recompile if any Dhall dependencies change
9+
* Performance improvements
10+
* Optimize `Natural/fold`: [[#2585](https://github.com/dhall-lang/dhall-haskell/pull/2585)] / [[#2596](https://github.com/dhall-lang/dhall-haskell/pull/2596)]
11+
* [Improve `Dhall.Map.traverseWithKey` performance](https://github.com/dhall-lang/dhall-haskell/pull/2589)
12+
* The fold will now short-circuit if it reaches a fixed point
13+
* [#2611](https://github.com/dhall-lang/dhall-haskell/pull/2611)
14+
* Fixes and improvements to test suite
15+
* [#2593](https://github.com/dhall-lang/dhall-haskell/pull/2593)
16+
* Fixes and improvements to haddocks
17+
* [#2546](https://github.com/dhall-lang/dhall-haskell/pull/2546)
18+
* Fixes and improvements to code formatting
19+
* [#2608](https://github.com/dhall-lang/dhall-haskell/pull/2608)
20+
121
1.42.1
222

323
* Add several new entrypoints to `Dhall` module [[#2534](https://github.com/dhall-lang/dhall-haskell/pull/2534)] / [[#2544](https://github.com/dhall-lang/dhall-haskell/pull/2544)]

dhall/dhall.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Cabal-Version: 2.4
22
Name: dhall
3-
Version: 1.42.1
3+
Version: 1.42.2
44
Build-Type: Simple
55
License: BSD-3-Clause
66
License-File: LICENSE

0 commit comments

Comments
 (0)