Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 1.42.1 → 1.42.2 #2629

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dhall-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.0.12

* [Fix white flashes on page load in dark mode](https://github.com/dhall-lang/dhall-haskell/pull/2574)
* [Render standalone text files as preformatted text](https://github.com/dhall-lang/dhall-haskell/pull/2565)
* [Render Markdown files as HTML](https://github.com/dhall-lang/dhall-haskell/pull/2579)
* [Default to browser settings for dark mode](https://github.com/dhall-lang/dhall-haskell/pull/2582)
* [Fix typo and formatting in a warning message](https://github.com/dhall-lang/dhall-haskell/pull/2572)

1.0.11

* Build against `dhall-1.42`
Expand Down
2 changes: 1 addition & 1 deletion dhall-docs/dhall-docs.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall-docs
Version: 1.0.11
Version: 1.0.12
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
Expand Down
4 changes: 4 additions & 0 deletions dhall-json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.7.13

* [Export `UnionConv`](https://github.com/dhall-lang/dhall-haskell/pull/2570)

1.7.12

* Build against `dhall-1.42`
Expand Down
2 changes: 1 addition & 1 deletion dhall-lsp-server/dhall-lsp-server.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dhall-lsp-server
Version: 1.1.3
Version: 1.1.4
cabal-version: 1.12
synopsis: Language Server Protocol (LSP) server for Dhall
homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme
Expand Down
2 changes: 1 addition & 1 deletion dhall-nix/dhall-nix.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall-nix
Version: 1.1.26
Version: 1.1.27
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
Expand Down
2 changes: 1 addition & 1 deletion dhall-openapi/dhall-openapi.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 1.11
Name: dhall-openapi
Version: 1.0.6
Version: 1.0.7
Homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-openapi#dhall-openapi
Author: Fabrizio Ferrai
Maintainer: [email protected]
Expand Down
5 changes: 5 additions & 0 deletions dhall-toml/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.4

* [Add support for `Prelude.Map.Type`](https://github.com/dhall-lang/dhall-haskell/pull/2549)
* [Fix loading of relative paths](https://github.com/dhall-lang/dhall-haskell/pull/2607)

1.0.3

* [Support `Integer`s](https://github.com/dhall-lang/dhall-haskell/pull/2469)
Expand Down
2 changes: 1 addition & 1 deletion dhall-toml/dhall-toml.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall-toml
Version: 1.0.3
Version: 1.0.4
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
Expand Down
20 changes: 20 additions & 0 deletions dhall/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
1.42.2

* [Supports standard version 23.1.0](https://github.com/dhall-lang/dhall-lang/releases/tag/v23.1.0)
* [Allow `Natural` and `Integer` literals in binary notation](https://github.com/dhall-lang/dhall-haskell/pull/2540)
* Fix macOS build [[#2561](https://github.com/dhall-lang/dhall-haskell/pull/2561)] / [[#2586](https://github.com/dhall-lang/dhall-haskell/pull/2586)]
* [`dhall to-directory-tree`: Fix support for empty `Map`s](https://github.com/dhall-lang/dhall-haskell/pull/2609)
* [`Dhall.TH`: Improve recompilation checking](https://github.com/dhall-lang/dhall-haskell/pull/2620)
* `Dhall.TH` utilities now use `addDependentFile` internally so that GHC will recompile if any Dhall dependencies change
* Performance improvements
* Optimize `Natural/fold`: [[#2585](https://github.com/dhall-lang/dhall-haskell/pull/2585)] / [[#2596](https://github.com/dhall-lang/dhall-haskell/pull/2596)]
* [Improve `Dhall.Map.traverseWithKey` performance](https://github.com/dhall-lang/dhall-haskell/pull/2589)
* The fold will now short-circuit if it reaches a fixed point
* [#2611](https://github.com/dhall-lang/dhall-haskell/pull/2611)
* Fixes and improvements to test suite
* [#2593](https://github.com/dhall-lang/dhall-haskell/pull/2593)
* Fixes and improvements to haddocks
* [#2546](https://github.com/dhall-lang/dhall-haskell/pull/2546)
* Fixes and improvements to code formatting
* [#2608](https://github.com/dhall-lang/dhall-haskell/pull/2608)

1.42.1

* 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)]
Expand Down
2 changes: 1 addition & 1 deletion dhall/dhall-lang
2 changes: 1 addition & 1 deletion dhall/dhall.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 2.4
Name: dhall
Version: 1.42.1
Version: 1.42.2
Build-Type: Simple
License: BSD-3-Clause
License-File: LICENSE
Expand Down
Loading