packages feed

snappy-hs 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+12/−8 lines, 2 filesdep ~bytestringdep ~vectorPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bytestring, vector

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for snappy-hs -## 0.1.0.0 -- YYYY-mm-dd+## 0.1.0.1 -- 2025-08-17 -* First version. Released on an unsuspecting world.+* Loosen version bounds for bytestring and vector.++## 0.1.0.0 -- 2025-08-16++* Compress and decompress raw snappy
snappy-hs.cabal view
@@ -1,7 +1,7 @@ cabal-version:      3.0 name:               snappy-hs-version:            0.1.0.0-synopsis:           A pure Haskell implementation of the Snappy compression spec.+version:            0.1.0.1+synopsis:           Snappy compression library. description:        A pure Haskell implementation of the Snappy compression spec. license:            MIT license-file:       LICENSE@@ -21,8 +21,8 @@     exposed-modules:  Snappy      build-depends:    base >=4.11 && <5-                    , bytestring ^>= 0.12-                    , vector ^>= 0.13+                    , bytestring >= 0.11 && <= 0.13+                    , vector >= 0.12 && <= 0.13.2     hs-source-dirs:   src     default-language: Haskell2010 @@ -31,7 +31,7 @@     main-is:          Main.hs     build-depends:         base >=4.11 && <5,-        bytestring ^>= 0.12,+        bytestring >= 0.11 && <= 0.13,         snappy-hs      hs-source-dirs:   app@@ -55,7 +55,7 @@ --     hs-source-dirs: benchmark --     build-depends: base >= 4.17.2.0 && < 4.22, --                    criterion >= 1 && <= 1.6.4.0,---                    bytestring ^>= 0.12,+--                    bytestring >= 0.11 && <= 0.13, --                    snappy ^>= 0.2, --                    snappy-hs --     default-language: Haskell2010