lzlib 1.0.0.2 → 1.0.1.0
raw patch · 3 files changed
+7/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Codec.Lzip: lZApiVersion :: Integral a => a
+ Codec.Lzip: lZVersion :: String
Files
- CHANGELOG.md +3/−2
- lzlib.cabal +1/−1
- src/Codec/Lzip.hs +3/−0
CHANGELOG.md view
@@ -1,11 +1,12 @@ # lzlib -## 1.0.0.01+## 1.0.1.0 - * Remove `Codec.Lzip.Raw`+ * Export `lZApiVersion` and `lZVersion` ## 1.0.0.0 + * Remove `Codec.Lzip.Raw` * Support older GHCs * Use `ForeignPtr` for raw bindings * Stream lazily
lzlib.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: lzlib-version: 1.0.0.2+version: 1.0.1.0 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2019-2020 Vanessa McHale
src/Codec/Lzip.hs view
@@ -8,6 +8,9 @@ , decompress , compressFile , CompressionLevel (..)+ -- * Miscellany+ , lZVersion+ , lZApiVersion ) where import Codec.Lzip.Raw