dhall-bash 1.0.40 → 1.0.41
raw patch · 3 files changed
+11/−6 lines, 3 filesdep ~containersdep ~dhalldep ~optparse-generic
Dependency ranges changed: containers, dhall, optparse-generic
Files
- LICENSE +1/−1
- dhall-bash.cabal +5/−5
- src/Dhall/Bash.hs +5/−0
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2020 Gabriel Gonzalez+Copyright (c) 2020 Gabriella Gonzalez All rights reserved. Redistribution and use in source and binary forms, with or without
dhall-bash.cabal view
@@ -1,12 +1,12 @@ Name: dhall-bash-Version: 1.0.40+Version: 1.0.41 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3 License-File: LICENSE-Copyright: 2017 Gabriel Gonzalez-Author: Gabriel Gonzalez-Maintainer: Gabriel439@gmail.com+Copyright: 2017 Gabriella Gonzalez+Author: Gabriella Gonzalez+Maintainer: GenuineGabriella@gmail.com Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues Synopsis: Compile Dhall to Bash Description:@@ -30,7 +30,7 @@ base >= 4.11.0.0 && < 5 , bytestring < 0.12, containers < 0.7 ,- dhall >= 1.41.0 && < 1.42,+ dhall >= 1.42.0 && < 1.43, neat-interpolation < 0.6 , shell-escape < 0.3 , text >= 0.2 && < 2.1
src/Dhall/Bash.hs view
@@ -292,6 +292,8 @@ go e@(BoolEQ {}) = Left (UnsupportedStatement e) go e@(BoolNE {}) = Left (UnsupportedStatement e) go e@(BoolIf {}) = Left (UnsupportedStatement e)+ go e@(Bytes ) = Left (UnsupportedStatement e)+ go e@(BytesLit {}) = Left (UnsupportedStatement e) go e@(Natural ) = Left (UnsupportedStatement e) go e@(NaturalFold ) = Left (UnsupportedStatement e) go e@(NaturalBuild ) = Left (UnsupportedStatement e)@@ -317,10 +319,13 @@ go e@(TextShow {}) = Left (UnsupportedStatement e) go e@(Date ) = Left (UnsupportedStatement e) go e@(DateLiteral {}) = Left (UnsupportedStatement e)+ go e@(DateShow ) = Left (UnsupportedStatement e) go e@(Time ) = Left (UnsupportedStatement e) go e@(TimeLiteral {}) = Left (UnsupportedStatement e)+ go e@(TimeShow ) = Left (UnsupportedStatement e) go e@(TimeZone ) = Left (UnsupportedStatement e) go e@(TimeZoneLiteral {}) = Left (UnsupportedStatement e)+ go e@(TimeZoneShow ) = Left (UnsupportedStatement e) go e@(List ) = Left (UnsupportedStatement e) go e@(ListAppend {}) = Left (UnsupportedStatement e) go e@(ListBuild ) = Left (UnsupportedStatement e)