hunk ./CHANGES 1 +2.1.0.3 +* Fix the .cabal to remove the test build deps unless the test flag is set + +2.1.0.2 +* Use "unsafeDrop" for a small performance win. This should be automaticly recognized by the compiler some day. + +2.1.0.1 +* Automatically use faster getNthWord on x86. Unpack more data types. + +2.1.0.0 +* Tighen build deps + hunk ./Data/Digest/Pure/MD5.hs 39 +import Data.ByteString.Unsafe (unsafeDrop) hunk ./Data/Digest/Pure/MD5.hs 125 - in blockAndDo new (B.drop blockSizeBytes bs) + in blockAndDo new (unsafeDrop blockSizeBytes bs) hunk ./pureMD5.cabal 2 -version: 2.1.0.1 +version: 2.1.0.3 hunk ./pureMD5.cabal 31 - Build-Depends: base, QuickCheck, crypto-api, bytestring, cereal + if flag(test) + Build-Depends: base, QuickCheck, crypto-api, bytestring, cereal hunk ./CHANGES 1 -2.1.0.3 -* Fix the .cabal to remove the test build deps unless the test flag is set - hunk ./CHANGES 2 +* Fix the .cabal to remove the test build deps unless the test flag is set hunk ./pureMD5.cabal 2 -version: 2.1.0.3 +version: 2.1.0.2 hunk ./pureMD5.cabal 22 - 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