packages feed

SHA2 0.2.1 → 0.2.2

raw patch · 1 files changed

+3/−3 lines, 1 filesdep ~monads-tfdep ~transformersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: monads-tf, transformers

API changes (from Hackage documentation)

- Codec.Digest.SHA: hash :: (Hashable a) => Length -> a -> ByteString
+ Codec.Digest.SHA: hash :: Hashable a => Length -> a -> ByteString
- Codec.Digest.SHA: hmac :: (Hashable a) => Length -> ByteString -> a -> ByteString
+ Codec.Digest.SHA: hmac :: Hashable a => Length -> ByteString -> a -> ByteString
- Codec.Digest.SHA.Monad: runSHAT :: (MonadUnsafeIO m) => Length -> SHAT m a -> m (a, ByteString)
+ Codec.Digest.SHA.Monad: runSHAT :: MonadUnsafeIO m => Length -> SHAT m a -> m (a, ByteString)

Files

SHA2.cabal view
@@ -1,7 +1,7 @@ Name: SHA2 Synopsis: Fast, incremental SHA hashing for bytestrings Description: A zero-copy binding to Aaron Gifford's SHA implementation, including a copy of that implementation-Version: 0.2.1+Version: 0.2.2 License: BSD3 License-file: COPYING Copyright: Copyright (c) 2009 University of Tromsø@@ -16,8 +16,8 @@  Library   Build-Depends:-        base >= 4 && < 5 , bytestring, monads-tf >= 0.0.0.1 && < 0.1,-        transformers >= 0.1.4.0 && < 0.2, AES >= 0.2+        base >= 4 && < 5 , bytestring, monads-tf >= 0.1,+        transformers >= 0.2, AES >= 0.2   Extensions:         ForeignFunctionInterface,         ViewPatterns,