packages feed

dhall-bash 1.0.29 → 1.0.30

raw patch · 2 files changed

+7/−5 lines, 2 filesdep ~dhalldep ~neat-interpolationdep ~optparse-genericPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: dhall, neat-interpolation, optparse-generic

API changes (from Hackage documentation)

Files

dhall-bash.cabal view
@@ -1,6 +1,6 @@ Name: dhall-bash-Version: 1.0.29-Cabal-Version: >=1.8.0.2+Version: 1.0.30+Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 License: BSD3@@ -31,12 +31,13 @@         base                      >= 4.8.0.0 && < 5   ,         bytestring                              < 0.11,         containers                              < 0.7 ,-        dhall                     >= 1.31.0  && < 1.32,-        neat-interpolation                      < 0.5 ,+        dhall                     >= 1.31.0  && < 1.33,+        neat-interpolation                      < 0.6 ,         shell-escape                            < 0.3 ,         text                      >= 0.2     && < 1.3     Exposed-Modules: Dhall.Bash     GHC-Options: -Wall+    Default-Language: Haskell2010  Executable dhall-to-bash     Hs-Source-Dirs: exec@@ -51,3 +52,4 @@         optparse-generic >= 1.1.1    && < 1.4 ,         text     GHC-Options: -Wall+    Default-Language: Haskell2010
exec/Main.hs view
@@ -50,7 +50,7 @@     (if unHelpful explain then Dhall.detailed else id) (handle (do         inText <- Data.Text.IO.getContents -        expr <- case Dhall.Parser.exprFromText "(stdin)" inText of+        expr <- case Dhall.Parser.exprFromText "(input)" inText of             Left  err  -> Control.Exception.throwIO err             Right expr -> return expr