packages feed

secp256k1-haskell 1.4.1 → 1.4.2

raw patch · 2 files changed

+21/−15 lines, 2 filesdep ~QuickCheckdep ~bytestringdep ~deepseqPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: QuickCheck, bytestring, deepseq, entropy, hashable, string-conversions, unliftio-core

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.4.2] - 2024-12-10++### Changed++- Relax all upper-bound version restrictions in `package.yaml`.+ ## [1.4.1] - 2024-12-10  ### Changed
secp256k1-haskell.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           secp256k1-haskell-version:        1.4.1+version:        1.4.2 synopsis:       Bindings for secp256k1 description:    Sign and verify signatures using the secp256k1 library. category:       Crypto@@ -40,15 +40,15 @@   pkgconfig-depends:       libsecp256k1   build-depends:-      QuickCheck >=2.9.2 && <2.16+      QuickCheck >=2.9.2     , base >=4.9 && <5     , base16 >=1.0-    , bytestring >=0.10.8 && <0.13-    , deepseq >=1.4.2 && <1.6-    , entropy >=0.3.8 && <0.5-    , hashable >=1.2.6 && <1.5-    , string-conversions ==0.4.*-    , unliftio-core >=0.1.0 && <0.3+    , bytestring >=0.10.8+    , deepseq >=1.4.2+    , entropy >=0.3.8+    , hashable >=1.2.6+    , string-conversions >=0.4+    , unliftio-core >=0.1.0   default-language: Haskell2010  test-suite spec@@ -65,18 +65,18 @@   ghc-options: -threaded -rtsopts -with-rtsopts=-N   build-depends:       HUnit-    , QuickCheck >=2.9.2 && <2.16+    , QuickCheck >=2.9.2     , base >=4.9 && <5     , base16 >=1.0-    , bytestring >=0.10.8 && <0.13-    , deepseq >=1.4.2 && <1.6-    , entropy >=0.3.8 && <0.5-    , hashable >=1.2.6 && <1.5+    , bytestring >=0.10.8+    , deepseq >=1.4.2+    , entropy >=0.3.8+    , hashable >=1.2.6     , hspec     , monad-par     , mtl     , secp256k1-haskell-    , string-conversions ==0.4.*-    , unliftio-core >=0.1.0 && <0.3+    , string-conversions >=0.4+    , unliftio-core >=0.1.0   default-language: Haskell2010   build-tool-depends: hspec-discover:hspec-discover