lzlib 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+18/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−1
- README.md +10/−0
- lzlib.cabal +3/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # lzlib +## 0.2.0.1++ * Performance improvements+ ## 0.2.0.0 * Performance improvements@@ -7,7 +11,7 @@ * Change type signatures of compression/decompression functions ## 0.1.1.1- + * Fix distribution ## 0.1.1.0
README.md view
@@ -1,3 +1,13 @@ # lzlib Haskell bindings to [lzlib](https://www.nongnu.org/lzip/lzlib.html).++## Building++Run++```bash+./bash/setup+```++to download a few tarballs before running the test suite.
lzlib.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: lzlib-version: 0.2.0.0+version: 0.2.0.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2019 Vanessa McHale@@ -45,6 +45,7 @@ Codec.Lzip Codec.Lzip.Raw + cc-options: -O1 c-sources: cbits/lzlib.c hs-source-dirs: src default-language: Haskell2010@@ -60,7 +61,7 @@ bytestring -any if !flag(cross)- build-tool-depends: c2hs:c2hs -any+ build-tool-depends: c2hs:c2hs >=0.26.1 if impl(ghc >=8.4) ghc-options: -Wmissing-export-lists