packages feed

dhall-json 1.7.2 → 1.7.3

raw patch · 6 files changed

+16/−2 lines, 6 filesdep ~dhallPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: dhall

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+1.7.3++* [Fix command-line completions for files](https://github.com/dhall-lang/dhall-haskell/pull/2034)+* [Support new `Text/replace` built-in](https://github.com/dhall-lang/dhall-haskell/pull/2063)+ 1.7.2  * [The `--documents` flag now wraps non-`List`s in a document](https://github.com/dhall-lang/dhall-haskell/pull/1977)
dhall-json.cabal view
@@ -1,5 +1,5 @@ Name: dhall-json-Version: 1.7.2+Version: 1.7.3 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.4.3, GHC == 8.6.1@@ -44,7 +44,7 @@         aeson-yaml                >= 1.1.0     && < 1.2 ,         bytestring                                < 0.11,         containers                >= 0.5.9     && < 0.7 ,-        dhall                     >= 1.35.0    && < 1.36,+        dhall                     >= 1.36.0    && < 1.37,         exceptions                >= 0.8.3     && < 0.11,         filepath                                  < 1.5 ,         lens-family-core          >= 1.0.0     && < 2.2 ,
dhall-to-json/Main.hs view
@@ -92,6 +92,7 @@             (   Options.long "file"             <>  Options.help "Read expression from a file instead of standard input"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )      parseOutput =@@ -99,6 +100,7 @@             (   Options.long "output"             <>  Options.help "Write JSON to a file instead of standard output"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )  parserInfo :: ParserInfo Options
json-to-dhall/Main.hs view
@@ -108,6 +108,7 @@             (   Options.long "file"             <>  Options.help "Read JSON from a file instead of standard input"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )      parseOutput =@@ -115,6 +116,7 @@             (   Options.long "output"             <>  Options.help "Write Dhall expression to a file instead of standard output"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )      parseASCII =
src/Dhall/DhallToYaml/Main.hs view
@@ -48,6 +48,7 @@             (   Options.long "file"             <>  Options.help "Read expression from a file instead of standard input"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )      parseVersion =@@ -62,6 +63,7 @@             (   Options.long "output"             <>  Options.help "Write YAML to a file instead of standard output"             <>  Options.metavar "FILE"+            <>  Options.action "file"             )      parseNoEdit =
src/Dhall/JSON.hs view
@@ -876,6 +876,9 @@             a' = loop a             b' = loop b +        Core.TextReplace ->+            Core.TextReplace+         Core.TextShow ->             Core.TextShow