brotli 0.0.0.1 → 0.0.0.2
raw patch · 2 files changed
+53/−19 lines, 2 filesdep ~QuickCheckdep ~basedep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, base, tasty, tasty-quickcheck
API changes (from Hackage documentation)
Files
- CHANGELOG.md +34/−0
- brotli.cabal +19/−19
CHANGELOG.md view
@@ -1,4 +1,38 @@ +0.0.0.2+-------++_Andreas Abel, 2024-06-25_++- Drop support for GHC 7.+- Tested with GHC 8.0 - 9.10.++0.0.0.1 revision 3+------------------++_Andreas Abel, 2023-08-01_++- Allow `base ≥ 4.19`.+- Tested locally with GHC 9.8.1 alpha1.++0.0.0.1 revision 2+------------------++_Andreas Abel, 2023-07-08_++- Allow `bytestring-0.12`.+- Tested with GHC 7.4 - 9.6.2.+++0.0.0.1 revision 1+------------------++_Andreas Abel, 2023-02-03_++- Allow `base-4.18`.+- Tested with GHC 7.4 - 9.6.1 alpha1.++ 0.0.0.1 -------
brotli.cabal view
@@ -1,7 +1,7 @@ cabal-version: 1.12 build-type: Simple name: brotli-version: 0.0.0.1+version: 0.0.0.2 synopsis: Brotli (RFC7932) compression and decompression homepage: https://github.com/haskell-hvr/brotli@@ -31,8 +31,11 @@ . tested-with:- GHC == 9.4.1- GHC == 9.2.2+ GHC == 9.10.1+ GHC == 9.8.2+ GHC == 9.6.5+ GHC == 9.4.8+ GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4@@ -40,12 +43,7 @@ GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2- GHC == 7.10.3- GHC == 7.8.4- GHC == 7.6.3- GHC == 7.4.2 - extra-source-files: CHANGELOG.md cbits/hs_brotli.h@@ -59,8 +57,8 @@ exposed-modules: Codec.Compression.Brotli other-modules: LibBrotli - build-depends: base >=4.5 && <4.18- , bytestring >=0.9.2 && <0.12+ build-depends: base >=4.9 && <5+ , bytestring >=0.9.2 && <0.13 , transformers >=0.3.0.0 && <0.7 default-language: Haskell2010@@ -70,9 +68,9 @@ include-dirs: cbits - ghc-options: -Wall- if impl(ghc >= 8.0)- ghc-options: -Wcompat+ ghc-options:+ -Wall+ -Wcompat test-suite brotli-tests default-language: Haskell2010@@ -87,11 +85,13 @@ , bytestring -- additional dependencies that require version bounds build-depends: HUnit == 1.6.*- , QuickCheck == 2.14.*- , tasty >= 1.2 && < 1.5+ , QuickCheck >= 2.14 && < 2.16+ , tasty >= 1.2 && < 1.6 , tasty-hunit == 0.10.*- , tasty-quickcheck == 0.10.*+ , tasty-quickcheck >= 0.10 && < 1 - ghc-options: -Wall -threaded- if impl(ghc >= 8.0)- ghc-options: -Wcompat++ ghc-options:+ -threaded+ -Wall+ -Wcompat