packages feed

quiver-binary 0.1.0.0 → 0.1.1.0

raw patch · 2 files changed

+4/−2 lines, 2 filesdep ~quiverPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: quiver

API changes (from Hackage documentation)

+ Control.Quiver.Binary: class Binary t
- Control.Quiver.Binary: spdecodeL :: forall a m. (Binary a, Monad m) => SP ByteString a m String
+ Control.Quiver.Binary: spdecodeL :: (Binary a, Monad m) => SP ByteString a m String

Files

quiver-binary.cabal view
@@ -1,5 +1,5 @@ name:                quiver-binary-version:             0.1.0.0+version:             0.1.1.0 synopsis:            Binary serialisation support for Quivers description:         Handling for the binary library within Quivers license:             MIT@@ -25,7 +25,7 @@   build-depends:       base >=4 && <5                      , binary >= 0.6 && < 0.9                      , bytestring-                     , quiver == 1.1.*+                     , quiver >= 1.1.3 && < 1.2                      , quiver-bytestring   hs-source-dirs:      src   default-language:    Haskell2010
src/Control/Quiver/Binary.hs view
@@ -23,6 +23,8 @@   , spdecodeL   , spencode   , spencodeL+    -- * Re-exports+  , Binary   ) where  import Control.Quiver.ByteString