packages feed

dhall-json 1.6.0 → 1.6.1

raw patch · 3 files changed

+8/−4 lines, 3 filesdep ~dhalldep ~prettyprinterPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: dhall, prettyprinter

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+1.6.1++* [Fix typos in error messages](https://github.com/dhall-lang/dhall-haskell/pull/1595)+ 1.6.0  * BREAKING CHANGE: [Move `HsYAML` code to a new `dhall-yaml` package](https://github.com/dhall-lang/dhall-haskell/pull/1514)
dhall-json.cabal view
@@ -1,5 +1,5 @@ Name: dhall-json-Version: 1.6.0+Version: 1.6.1 Cabal-Version: >=1.8.0.2 Build-Type: Simple Tested-With: GHC == 7.10.3, GHC == 8.4.3, GHC == 8.6.1@@ -40,7 +40,7 @@         aeson-yaml                >= 1.0.5    && < 1.1 ,         bytestring                               < 0.11,         containers                                     ,-        dhall                     >= 1.28.0   && < 1.29,+        dhall                     >= 1.28.0   && < 1.30,         exceptions                >= 0.8.3    && < 0.11,         filepath                                 < 1.5 ,         optparse-applicative      >= 0.14.0.0 && < 0.16,
src/Dhall/JSONToDhall.hs view
@@ -349,7 +349,7 @@  >>> typeCheckSchemaExpr id =<< resolveSchemaExpr "+1" *** Exception:-Error: Schema expression is succesfully parsed but has Dhall type:+Error: Schema expression is successfully parsed but has Dhall type: Integer Expected Dhall type: Type Parsed expression: +1@@ -641,7 +641,7 @@     TypeError e -> show e      BadDhallType t e -> prefix-      <> "Schema expression is succesfully parsed but has Dhall type:\n"+      <> "Schema expression is successfully parsed but has Dhall type:\n"       <> showExpr t <> "\nExpected Dhall type: Type"       <> "\nParsed expression: "       <> showExpr e <> "\n"