dhall-bash 1.0.39 → 1.0.40
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~dhallPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: dhall
API changes (from Hackage documentation)
Files
- dhall-bash.cabal +3/−3
- src/Dhall/Bash.hs +1/−0
dhall-bash.cabal view
@@ -1,5 +1,5 @@ Name: dhall-bash-Version: 1.0.39+Version: 1.0.40 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3@@ -30,10 +30,10 @@ base >= 4.11.0.0 && < 5 , bytestring < 0.12, containers < 0.7 ,- dhall >= 1.40.0 && < 1.41,+ dhall >= 1.41.0 && < 1.42, neat-interpolation < 0.6 , shell-escape < 0.3 ,- text >= 0.2 && < 1.3+ text >= 0.2 && < 2.1 Exposed-Modules: Dhall.Bash GHC-Options: -Wall Default-Language: Haskell2010
src/Dhall/Bash.hs view
@@ -340,6 +340,7 @@ go e@(RecordCompletion {}) = Left (UnsupportedStatement e) go e@(Merge {}) = Left (UnsupportedStatement e) go e@(ToMap {}) = Left (UnsupportedStatement e)+ go e@(ShowConstructor {}) = Left (UnsupportedStatement e) go e@(Field {}) = Left (UnsupportedStatement e) go e@(Project {}) = Left (UnsupportedStatement e) go e@(Assert {}) = Left (UnsupportedStatement e)