Skip to content

Commit 08103a1

Browse files
authored
Version 1.38.0 → 1.38.1 (#2165)
1 parent 6bd4bfc commit 08103a1

File tree

13 files changed

+67
-22
lines changed

13 files changed

+67
-22
lines changed

dhall-docs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
1.0.5
2+
3+
* [BUG FIX: Fix index generation](https://github.com/dhall-lang/dhall-haskell/pull/2150)
4+
* Indices are now created for intermediate directories without `.dhall` files
5+
* `dhall-docs` no longer hangs when the top-level directory has no `.dhall` files
6+
* [Fix lower bound on `dhall`](https://github.com/dhall-lang/dhall-haskell/pull/2147/)
7+
* [Allow doctest-0.18](https://github.com/dhall-lang/dhall-haskell/pull/2148)
8+
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
9+
* [Add `README` to tarball](https://github.com/dhall-lang/dhall-haskell/pull/2145)
10+
* [Remove test dependency on HaXml](https://github.com/dhall-lang/dhall-haskell/pull/2156)
11+
112
1.0.4
213

314
* Build against `dhall-1.38.0`, `tasty-1.4`, `tasty-silver-3.2`, and

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.4
2+
Version: 1.0.5
33
Cabal-Version: >=1.10
44
Build-Type: Simple
55
Tested-With: GHC == 8.6.1

dhall-json/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.7.6
2+
3+
* [Fix `hashable`-related test failures](https://github.com/dhall-lang/dhall-haskell/pull/2152)
4+
* [Fix lower bound on `dhall`](https://github.com/dhall-lang/dhall-haskell/pull/2147)
5+
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
6+
* [Fix typos in `json-to-dhall --help` output](https://github.com/dhall-lang/dhall-haskell/pull/2160)
7+
18
1.7.5
29

310
* Build against `dhall-1.38.0`, `tasty-1.4`, and `tasty-silver-3.2`

dhall-json/dhall-json.cabal

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

dhall-lsp-server/ChangeLog.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dhall-lsp-server
2-
Version: 1.0.13
2+
Version: 1.0.14
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
@@ -12,7 +12,6 @@ license-file: LICENSE
1212
build-type: Simple
1313
extra-source-files:
1414
README.md
15-
ChangeLog.md
1615
tests/fixtures/completion/*.dhall
1716
tests/fixtures/diagnostics/*.dhall
1817
tests/fixtures/linting/*.dhall

dhall-openapi/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# `dhall-openapi`
22

3-
:construction: **This tool is on development phase yet**
4-
53
For installation or development instructions, see:
64

75
* [`dhall-haskell` - `README`](https://github.com/dhall-lang/dhall-haskell/blob/master/README.md)
86

97
## Introduction
108

119
This `dhall-openapi` package provides an OpenAPI to Dhall compiler.
10+
1211
The `openapi-to-dhall` executable generates the Dhall types from an OpenAPI specification.

dhall-openapi/dhall-openapi.cabal

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
cabal-version: >=1.10
22
name: dhall-openapi
3-
version: 0.1.2
4-
category: Code Generation
5-
homepage: https://github.com/dhall-lang/dhall-haskell
3+
version: 1.0.0
4+
homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-openapi#dhall-openapi
65
author: Fabrizio Ferrai
7-
maintainer: fabrizio@ferrai.io
6+
maintainer: Gabriel439@gmail.com
87
copyright: 2019 Fabrizio Ferrai
98
license: BSD3
109
build-type: Simple
@@ -17,7 +16,17 @@ executable openapi-to-dhall
1716
main-is: Main.hs
1817
hs-source-dirs:
1918
openapi-to-dhall
20-
default-extensions: DuplicateRecordFields GeneralizedNewtypeDeriving LambdaCase RecordWildCards ScopedTypeVariables OverloadedStrings FlexibleInstances ConstraintKinds ApplicativeDo TupleSections
19+
default-extensions:
20+
DuplicateRecordFields
21+
GeneralizedNewtypeDeriving
22+
LambdaCase
23+
RecordWildCards
24+
ScopedTypeVariables
25+
OverloadedStrings
26+
FlexibleInstances
27+
ConstraintKinds
28+
ApplicativeDo
29+
TupleSections
2130
ghc-options: -Wall
2231
build-depends:
2332
base ,
@@ -43,7 +52,20 @@ library
4352
Dhall.Kubernetes.Types
4453
hs-source-dirs:
4554
src
46-
default-extensions: DeriveDataTypeable DeriveGeneric DerivingStrategies DuplicateRecordFields GeneralizedNewtypeDeriving LambdaCase RecordWildCards ScopedTypeVariables OverloadedStrings FlexibleInstances ConstraintKinds ApplicativeDo TupleSections
55+
default-extensions:
56+
DeriveDataTypeable
57+
DeriveGeneric
58+
DerivingStrategies
59+
DuplicateRecordFields
60+
GeneralizedNewtypeDeriving
61+
LambdaCase
62+
RecordWildCards
63+
ScopedTypeVariables
64+
OverloadedStrings
65+
FlexibleInstances
66+
ConstraintKinds
67+
ApplicativeDo
68+
TupleSections
4769
ghc-options: -Wall
4870
build-depends:
4971
base >= 4.11.0.0 && < 5 ,

dhall-yaml/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.2.6
2+
3+
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
4+
15
1.2.5
26

37
* Build against `dhall-1.38.0`, `tasty-1.4`, and `tasty-silver-3.2`

dhall-yaml/dhall-yaml.cabal

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

0 commit comments

Comments
 (0)