quicklz 1.5.0.9 → 1.5.0.10
raw patch · 3 files changed
+12/−10 lines, 3 filesdep ~QuickCheckdep ~basedep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, base, bytestring, test-framework, test-framework-quickcheck2
API changes (from Hackage documentation)
Files
- Codec/Compression/QuickLZ.hsc +2/−2
- README.md +2/−0
- quicklz.cabal +8/−8
Codec/Compression/QuickLZ.hsc view
@@ -1,10 +1,10 @@ {-# LANGUAGE CPP #-} -- | -- Module : Codec.Compression.QuickLZ--- Copyright : (c) Austin Seipp 2011+-- Copyright : (c) Austin Seipp 2011-2012 -- License : GPLv2 -- --- Maintainer : as@hacks.yi.org+-- Maintainer : mad.one@gmail.com -- Stability : experimental -- Portability : portable --
README.md view
@@ -15,6 +15,8 @@ QuickLZ 1.5.0 has a compression speed of 308Mbyte/s, and a decompression speed of 358Mbyte/s (their benchmarks, Core i7 920.) +[travis-ci.org](http://travis-ci.org) results: [](http://travis-ci.org/thoughtpolice/hs-quicklz)+ # Installation Just use cabal:
quicklz.cabal view
@@ -1,5 +1,5 @@ name: quicklz-version: 1.5.0.9+version: 1.5.0.10 synopsis: QuickLZ compression for ByteStrings description: This package provides a high level binding to the QuickLZ@@ -42,8 +42,8 @@ library exposed-modules: Codec.Compression.QuickLZ build-depends: - base >= 3 && < 5,- bytestring == 0.9.*+ base < 5,+ bytestring >= 0.9 c-sources: cbits/quicklz.c include-dirs: cbits@@ -59,11 +59,11 @@ type: exitcode-stdio-1.0 build-depends:- base,- bytestring == 0.9.*,- QuickCheck == 2.4.*,- test-framework == 0.4.*,- test-framework-quickcheck2 == 0.2.*,+ base < 5,+ bytestring >= 0.9,+ QuickCheck >= 2.4,+ test-framework >= 0.4,+ test-framework-quickcheck2 >= 0.2, quicklz ghc-options: -fno-cse