bond-haskell 0.1.4.1 → 0.1.5.0
raw patch · 2 files changed
+4/−2 lines, 2 filesdep ~bond-haskell-compilerPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: bond-haskell-compiler
API changes (from Hackage documentation)
- Data.Bond.Internal.Imports: fromString :: String -> a
+ Data.Bond.Internal.Imports: fromString :: IsString a => String -> a
Files
bond-haskell.cabal view
@@ -1,5 +1,5 @@ name: bond-haskell-version: 0.1.4.1+version: 0.1.5.0 synopsis: Runtime support for BOND serialization description: Bond is a cross-platform framework for handling schematized data. It supports cross-language de/serialization and@@ -62,7 +62,7 @@ Data.Bond.Internal.Utils Data.Bond.Internal.Utils build-depends: base >= 4.7 && < 5- , bond-haskell-compiler >= 0.1.4.0 && < 0.1.5+ , bond-haskell-compiler >= 0.1.5.0 && < 0.1.6 , aeson , array , binary >= 0.7.0.0
src/Data/Bond/Internal/Imports.hs-boot view
@@ -1,5 +1,7 @@ module Data.Bond.Internal.Imports ( module X+ , NFData ) where import Data.Bond.Types as X+import Control.DeepSeq (NFData)