packages feed

crc 0.1.1.0 → 0.1.1.1

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Data.Digest.CRC: digestWithInitial :: CRC a => a -> ByteString -> a

Files

changelog.md view
@@ -1,4 +1,4 @@-0.1.1.0+0.1.1.1 * Export `digestWithInitial`[#3](https://github.com/MichaelXavier/crc/pull/3)  0.1.0.0
crc.cabal view
@@ -1,5 +1,5 @@ name:                crc-version:             0.1.1.0+version:             0.1.1.1 synopsis:            Implements various Cyclic Redundancy Checks (CRC) description:         ByteString-based Cyclic Redundancy Checks homepage:            http://github.com/MichaelXavier/crc
src/Data/Digest/CRC.hs view
@@ -7,6 +7,7 @@ module Data.Digest.CRC     ( CRC(..)     , digest+    , digestWithInitial     ) where  @@ -32,3 +33,6 @@  digest :: CRC a => ByteString -> a digest = updateDigest initCRC++digestWithInitial :: CRC a => a -> ByteString -> a+digestWithInitial = updateDigest