dhall 1.5.0 → 1.5.1
raw patch · 3 files changed
+8/−3 lines, 3 filesdep ~optparse-genericdep ~vectorPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: optparse-generic, vector
API changes (from Hackage documentation)
+ Dhall: InputType :: (a -> Expr Src X) -> Expr Src X -> InputType a
+ Dhall: [declared] :: InputType a -> Expr Src X
+ Dhall: [embed] :: InputType a -> a -> Expr Src X
+ Dhall: data InputType a
Files
- CHANGELOG.md +4/−0
- dhall.cabal +3/−3
- src/Dhall.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+1.5.1++* Increase upper bound on `vector` and `optparse-generic`+ 1.5.0 * BREAKING CHANGE: Add list concatenation operator: `(#)`
dhall.cabal view
@@ -1,5 +1,5 @@ Name: dhall-Version: 1.5.0+Version: 1.5.1 Cabal-Version: >=1.8.0.2 Build-Type: Simple Tested-With: GHC == 7.10.2, GHC == 8.0.1@@ -123,7 +123,7 @@ Build-Depends: base >= 4 && < 5 , dhall ,- optparse-generic >= 1.1.1 && < 1.2,+ optparse-generic >= 1.1.1 && < 1.3, trifecta >= 1.6 && < 1.8, text >= 0.11.1.0 && < 1.3 GHC-Options: -Wall@@ -146,4 +146,4 @@ tasty >= 0.11.2 && < 0.12, tasty-hunit >= 0.9.2 && < 0.10, text >= 0.11.1.0 && < 1.3 ,- vector >= 0.11.0.0 && < 0.12+ vector >= 0.11.0.0 && < 0.13
src/Dhall.hs view
@@ -19,6 +19,7 @@ -- * Types , Type(..)+ , InputType(..) , Interpret(..) , InvalidType(..) , auto