dhall-bash 1.0.16 → 1.0.17
raw patch · 2 files changed
+29/−26 lines, 2 filesdep ~containersdep ~dhallPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: containers, dhall
API changes (from Hackage documentation)
- Dhall.Bash: instance GHC.Exception.Exception Dhall.Bash.ExpressionError
- Dhall.Bash: instance GHC.Exception.Exception Dhall.Bash.StatementError
+ Dhall.Bash: instance GHC.Exception.Type.Exception Dhall.Bash.ExpressionError
+ Dhall.Bash: instance GHC.Exception.Type.Exception Dhall.Bash.StatementError
- Dhall.Bash: UnsupportedExpression :: (Expr X X) -> ExpressionError
+ Dhall.Bash: UnsupportedExpression :: Expr X X -> ExpressionError
- Dhall.Bash: UnsupportedStatement :: (Expr X X) -> StatementError
+ Dhall.Bash: UnsupportedStatement :: Expr X X -> StatementError
- Dhall.Bash: UnsupportedSubexpression :: (Expr X X) -> StatementError
+ Dhall.Bash: UnsupportedSubexpression :: Expr X X -> StatementError
Files
- LICENSE +24/−21
- dhall-bash.cabal +5/−5
LICENSE view
@@ -1,24 +1,27 @@-Copyright (c) 2017 Gabriel Gonzalez+Copyright (c) 2018 Gabriel Gonzalez All rights reserved. -Redistribution and use in source and binary forms, with or without modification,-are permitted provided that the following conditions are met:- * Redistributions of source code must retain the above copyright notice,- this list of conditions and the following disclaimer.- * Redistributions in binary form must reproduce the above copyright notice,- this list of conditions and the following disclaimer in the documentation- and/or other materials provided with the distribution.- * Neither the name of Gabriel Gonzalez nor the names of other contributors- may be used to endorse or promote products derived from this software- without specific prior written permission.+Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.+1. Redistributions of source code must retain the above copyright notice, this+list of conditions and the following disclaimer.++2. Redistributions in binary form must reproduce the above copyright notice,+this list of conditions and the following disclaimer in the documentation+and/or other materials provided with the distribution.++3. Neither the name of the author nor the names of its contributors may be+used to endorse or promote products derived from this software without+specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dhall-bash.cabal view
@@ -1,5 +1,5 @@ Name: dhall-bash-Version: 1.0.16+Version: 1.0.17 Cabal-Version: >=1.8.0.2 Build-Type: Simple Tested-With: GHC == 7.10.2, GHC == 8.0.1@@ -8,7 +8,7 @@ Copyright: 2017 Gabriel Gonzalez Author: Gabriel Gonzalez Maintainer: Gabriel439@gmail.com-Bug-Reports: https://github.com/Gabriel439/Haskell-Dhall-Bash-Library/issues+Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues Synopsis: Compile Dhall to Bash Description: Use this package if you want to compile Dhall expressions to Bash.@@ -23,15 +23,15 @@ Category: Compiler Source-Repository head Type: git- Location: https://github.com/Gabriel439/Haskell-Dhall-Bash-Library+ Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-bash Library Hs-Source-Dirs: src Build-Depends: base >= 4.8.0.0 && < 5 , bytestring < 0.11,- containers < 0.6 ,- dhall >= 1.18.0 && < 1.19,+ containers < 0.7 ,+ dhall >= 1.18.0 && < 1.20, neat-interpolation < 0.4 , shell-escape < 0.3 , text >= 0.2 && < 1.3