Skip to content

Commit

Permalink
Version 1.38.0 → 1.38.1 (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriella439 authored Mar 27, 2021
1 parent 6bd4bfc commit 08103a1
Show file tree
Hide file tree
Showing 13 changed files with 67 additions and 22 deletions.
11 changes: 11 additions & 0 deletions dhall-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1.0.5

* [BUG FIX: Fix index generation](https://github.com/dhall-lang/dhall-haskell/pull/2150)
* Indices are now created for intermediate directories without `.dhall` files
* `dhall-docs` no longer hangs when the top-level directory has no `.dhall` files
* [Fix lower bound on `dhall`](https://github.com/dhall-lang/dhall-haskell/pull/2147/)
* [Allow doctest-0.18](https://github.com/dhall-lang/dhall-haskell/pull/2148)
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
* [Add `README` to tarball](https://github.com/dhall-lang/dhall-haskell/pull/2145)
* [Remove test dependency on HaXml](https://github.com/dhall-lang/dhall-haskell/pull/2156)

1.0.4

* Build against `dhall-1.38.0`, `tasty-1.4`, `tasty-silver-3.2`, and
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.4
Version: 1.0.5
Cabal-Version: >=1.10
Build-Type: Simple
Tested-With: GHC == 8.6.1
Expand Down
7 changes: 7 additions & 0 deletions dhall-json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.7.6

* [Fix `hashable`-related test failures](https://github.com/dhall-lang/dhall-haskell/pull/2152)
* [Fix lower bound on `dhall`](https://github.com/dhall-lang/dhall-haskell/pull/2147)
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
* [Fix typos in `json-to-dhall --help` output](https://github.com/dhall-lang/dhall-haskell/pull/2160)

1.7.5

* Build against `dhall-1.38.0`, `tasty-1.4`, and `tasty-silver-3.2`
Expand Down
2 changes: 1 addition & 1 deletion dhall-json/dhall-json.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall-json
Version: 1.7.5
Version: 1.7.6
Cabal-Version: >=1.10
Build-Type: Simple
Tested-With: GHC == 8.4.3, GHC == 8.6.1
Expand Down
7 changes: 0 additions & 7 deletions dhall-lsp-server/ChangeLog.md

This file was deleted.

3 changes: 1 addition & 2 deletions 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.0.13
Version: 1.0.14
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 All @@ -12,7 +12,6 @@ license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
tests/fixtures/completion/*.dhall
tests/fixtures/diagnostics/*.dhall
tests/fixtures/linting/*.dhall
Expand Down
3 changes: 1 addition & 2 deletions dhall-openapi/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# `dhall-openapi`

:construction: **This tool is on development phase yet**

For installation or development instructions, see:

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

## Introduction

This `dhall-openapi` package provides an OpenAPI to Dhall compiler.

The `openapi-to-dhall` executable generates the Dhall types from an OpenAPI specification.
34 changes: 28 additions & 6 deletions dhall-openapi/dhall-openapi.cabal
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
cabal-version: >=1.10
name: dhall-openapi
version: 0.1.2
category: Code Generation
homepage: https://github.com/dhall-lang/dhall-haskell
version: 1.0.0
homepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-openapi#dhall-openapi
author: Fabrizio Ferrai
maintainer: [email protected]
maintainer: [email protected]
copyright: 2019 Fabrizio Ferrai
license: BSD3
build-type: Simple
Expand All @@ -17,7 +16,17 @@ executable openapi-to-dhall
main-is: Main.hs
hs-source-dirs:
openapi-to-dhall
default-extensions: DuplicateRecordFields GeneralizedNewtypeDeriving LambdaCase RecordWildCards ScopedTypeVariables OverloadedStrings FlexibleInstances ConstraintKinds ApplicativeDo TupleSections
default-extensions:
DuplicateRecordFields
GeneralizedNewtypeDeriving
LambdaCase
RecordWildCards
ScopedTypeVariables
OverloadedStrings
FlexibleInstances
ConstraintKinds
ApplicativeDo
TupleSections
ghc-options: -Wall
build-depends:
base ,
Expand All @@ -43,7 +52,20 @@ library
Dhall.Kubernetes.Types
hs-source-dirs:
src
default-extensions: DeriveDataTypeable DeriveGeneric DerivingStrategies DuplicateRecordFields GeneralizedNewtypeDeriving LambdaCase RecordWildCards ScopedTypeVariables OverloadedStrings FlexibleInstances ConstraintKinds ApplicativeDo TupleSections
default-extensions:
DeriveDataTypeable
DeriveGeneric
DerivingStrategies
DuplicateRecordFields
GeneralizedNewtypeDeriving
LambdaCase
RecordWildCards
ScopedTypeVariables
OverloadedStrings
FlexibleInstances
ConstraintKinds
ApplicativeDo
TupleSections
ghc-options: -Wall
build-depends:
base >= 4.11.0.0 && < 5 ,
Expand Down
4 changes: 4 additions & 0 deletions dhall-yaml/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.2.6

* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)

1.2.5

* Build against `dhall-1.38.0`, `tasty-1.4`, and `tasty-silver-3.2`
Expand Down
2 changes: 1 addition & 1 deletion dhall-yaml/dhall-yaml.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall-yaml
Version: 1.2.5
Version: 1.2.6
Cabal-Version: >=1.10
Build-Type: Simple
Tested-With: GHC == 8.4.3, GHC == 8.6.1
Expand Down
10 changes: 10 additions & 0 deletions dhall/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.38.1

* [Add `INLINABLE` annotations in more places](https://github.com/dhall-lang/dhall-haskell/pull/2164)
* This may improve performance by enabling more specializations
* [Fix `hashable`-related test failures](https://github.com/dhall-lang/dhall-haskell/pull/2152)
* [Fix support for GHC 8.4.4](https://github.com/dhall-lang/dhall-haskell/pull/2143)
* … by using `GeneralizedNewtypeDeriving` (with a `z`)
* [Allow doctest-0.18](https://github.com/dhall-lang/dhall-haskell/pull/2148)
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)

1.38.0

* [BREAKING CHANGE: Detect preferred character set from input](https://github.com/dhall-lang/dhall-haskell/pull/2108)
Expand Down
2 changes: 1 addition & 1 deletion dhall/dhall.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dhall
Version: 1.38.0
Version: 1.38.1
Cabal-Version: 2.0
Build-Type: Simple
Tested-With: GHC == 8.4.3, GHC == 8.6.1
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ function release {

git submodule update

for package in dhall-lsp-server dhall-json dhall-yaml dhall-bash dhall-nix dhall-nixpkgs dhall dhall-docs; do
for package in dhall-lsp-server dhall-openapi dhall-json dhall-yaml dhall-bash dhall-nix dhall-nixpkgs dhall-docs dhall; do
release "${package}"
done

0 comments on commit 08103a1

Please sign in to comment.