dhall-bash 1.0.28 → 1.0.29
raw patch · 3 files changed
+5/−4 lines, 3 filesdep ~dhallPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: dhall
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- dhall-bash.cabal +3/−3
- src/Dhall/Bash.hs +1/−0
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2018 Gabriel Gonzalez+Copyright (c) 2020 Gabriel Gonzalez All rights reserved. Redistribution and use in source and binary forms, with or without
dhall-bash.cabal view
@@ -1,8 +1,8 @@ Name: dhall-bash-Version: 1.0.28+Version: 1.0.29 Cabal-Version: >=1.8.0.2 Build-Type: Simple-Tested-With: GHC == 8.0.2, GHC == 8.4.3, GHC == 8.6.1+Tested-With: GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 License: BSD3 License-File: LICENSE Copyright: 2017 Gabriel Gonzalez@@ -31,7 +31,7 @@ base >= 4.8.0.0 && < 5 , bytestring < 0.11, containers < 0.7 ,- dhall >= 1.28.0 && < 1.31,+ dhall >= 1.31.0 && < 1.32, neat-interpolation < 0.5 , shell-escape < 0.3 , text >= 0.2 && < 1.3
src/Dhall/Bash.hs view
@@ -335,6 +335,7 @@ go e@(Project {}) = Left (UnsupportedStatement e) go e@(Assert {}) = Left (UnsupportedStatement e) go e@(Equivalent {}) = Left (UnsupportedStatement e)+ go e@(With {}) = Left (UnsupportedStatement e) go e@(ImportAlt {}) = Left (UnsupportedStatement e) {-| Compile a Dhall expression to a Bash expression