Skip to content

Commit 27ba823

Browse files
committed
Relax restrictions on QuickCheck
1 parent fefdadb commit 27ba823

File tree

5 files changed

+18
-22
lines changed

5 files changed

+18
-22
lines changed

secp256k1-haskell/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.4.1] - 2024-12-10
8+
9+
### Changed
10+
11+
- Relax version restriction on QuickCheck.
12+
713
## [1.4.0] - 2024-08-28
814

915
### Removed

secp256k1-haskell/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: secp256k1-haskell
2-
version: 1.4.0
2+
version: 1.4.1
33
synopsis: Bindings for secp256k1
44
description: Sign and verify signatures using the secp256k1 library.
55
category: Crypto
@@ -19,7 +19,7 @@ dependencies:
1919
- entropy >=0.3.8 && <0.5
2020
- deepseq >=1.4.2 && <1.6
2121
- hashable >=1.2.6 && <1.5
22-
- QuickCheck >=2.9.2 && <2.15
22+
- QuickCheck >=2.9.2 && <2.16
2323
- string-conversions >=0.4 && <0.5
2424
- unliftio-core >=0.1.0 && <0.3
2525
library:

secp256k1-haskell/secp256k1-haskell.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
cabal-version: 2.0
22

3-
-- This file has been generated from package.yaml by hpack version 0.36.0.
3+
-- This file has been generated from package.yaml by hpack version 0.37.0.
44
--
55
-- see: https://github.com/sol/hpack
66

77
name: secp256k1-haskell
8-
version: 1.4.0
8+
version: 1.4.1
99
synopsis: Bindings for secp256k1
1010
description: Sign and verify signatures using the secp256k1 library.
1111
category: Crypto
@@ -40,7 +40,7 @@ library
4040
pkgconfig-depends:
4141
libsecp256k1
4242
build-depends:
43-
QuickCheck >=2.9.2 && <2.15
43+
QuickCheck >=2.9.2 && <2.16
4444
, base >=4.9 && <5
4545
, base16 >=1.0
4646
, bytestring >=0.10.8 && <0.13
@@ -65,7 +65,7 @@ test-suite spec
6565
ghc-options: -threaded -rtsopts -with-rtsopts=-N
6666
build-depends:
6767
HUnit
68-
, QuickCheck >=2.9.2 && <2.15
68+
, QuickCheck >=2.9.2 && <2.16
6969
, base >=4.9 && <5
7070
, base16 >=1.0
7171
, bytestring >=0.10.8 && <0.13

stack.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-22.33
1+
resolver: lts-23.0
22

33
packages:
44
- secp256k1-haskell
@@ -7,6 +7,3 @@ nix:
77
packages:
88
- secp256k1
99
- pkg-config
10-
11-
extra-deps:
12-
- base16-1.0@sha256:9b72a280a7af75a5026fa25a1b8ae18ec10200a070947723f1fd61dc8d407862,2472

stack.yaml.lock

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,10 @@
33
# For more information, please see the documentation at:
44
# https://docs.haskellstack.org/en/stable/lock_files
55

6-
packages:
7-
- completed:
8-
hackage: base16-1.0@sha256:9b72a280a7af75a5026fa25a1b8ae18ec10200a070947723f1fd61dc8d407862,2472
9-
pantry-tree:
10-
sha256: 3a0f4b633d58e312d6e6fa556c7abbd0f483ebc35d767a77315f98e2d9840fd8
11-
size: 1457
12-
original:
13-
hackage: base16-1.0@sha256:9b72a280a7af75a5026fa25a1b8ae18ec10200a070947723f1fd61dc8d407862,2472
6+
packages: []
147
snapshots:
158
- completed:
16-
sha256: 098936027eaa1ef14e2b8eb39d9933a973894bb70a68684a1bbf00730249879b
17-
size: 720001
18-
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/33.yaml
19-
original: lts-22.33
9+
sha256: 9444fadfa30b67a93080254d53872478c087592ad64443e47c546cdcd13149ae
10+
size: 678857
11+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/23/0.yaml
12+
original: lts-23.0

0 commit comments

Comments
 (0)