packages feed

pureMD5 2.1.0.2 → 2.1.0.3

raw patch · 1 files changed

+2/−2 lines, 1 filesdep ~crypto-apiPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: crypto-api

API changes (from Hackage documentation)

- Data.Digest.Pure.MD5: blockLength :: (Hash ctx d) => Tagged d BitLength
+ Data.Digest.Pure.MD5: blockLength :: Hash ctx d => Tagged d BitLength
- Data.Digest.Pure.MD5: finalize :: (Hash ctx d) => ctx -> ByteString -> d
+ Data.Digest.Pure.MD5: finalize :: Hash ctx d => ctx -> ByteString -> d
- Data.Digest.Pure.MD5: initialCtx :: (Hash ctx d) => ctx
+ Data.Digest.Pure.MD5: initialCtx :: Hash ctx d => ctx
- Data.Digest.Pure.MD5: outputLength :: (Hash ctx d) => Tagged d BitLength
+ Data.Digest.Pure.MD5: outputLength :: Hash ctx d => Tagged d BitLength
- Data.Digest.Pure.MD5: updateCtx :: (Hash ctx d) => ctx -> ByteString -> ctx
+ Data.Digest.Pure.MD5: updateCtx :: Hash ctx d => ctx -> ByteString -> ctx

Files

pureMD5.cabal view
@@ -1,5 +1,5 @@ name:		pureMD5-version:	2.1.0.2+version:	2.1.0.3 license:	BSD3 license-file:	LICENSE author:		Thomas DuBuisson <thomas.dubuisson@gmail.com>@@ -19,7 +19,7 @@   default: False  Library-  Build-Depends: base == 4.*, bytestring >= 0.9 && < 0.10, binary >= 0.4.0 && < 0.6.0, cereal >= 0.2 && < 0.4, crypto-api < 0.2, tagged+  Build-Depends: base == 4.*, bytestring >= 0.9 && < 0.10, binary >= 0.4.0 && < 0.6.0, cereal >= 0.2 && < 0.4, crypto-api, tagged   ghc-options:	-O2 -funfolding-use-threshold66 -funfolding-creation-threshold66 -fexcess-precision -funbox-strict-fields   hs-source-dirs:   exposed-modules: Data.Digest.Pure.MD5