Skip to content

Commit 1b63f48

Browse files
committed
Upgrade to base16 1.0
1 parent 3df963a commit 1b63f48

File tree

7 files changed

+813
-654
lines changed

7 files changed

+813
-654
lines changed

package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: secp256k1-haskell
2-
version: 0.6.1
2+
version: 0.7.0
33
synopsis: Bindings for secp256k1
44
description: Sign and verify signatures using the secp256k1 library.
55
category: Crypto
@@ -8,14 +8,14 @@ maintainer: [email protected]
88
copyright: (c) 2017 Jean-Pierre Rupp
99
license: MIT
1010
license-file: LICENSE
11-
github: haskoin/secp256k1-haskell.git
11+
github: haskoin/secp256k1-haskell
1212
homepage: http://github.com/haskoin/secp256k1-haskell#readme
1313
extra-source-files:
1414
- CHANGELOG.md
1515
- README.md
1616
dependencies:
1717
- base >=4.9 && <5
18-
- base16 >=0.3.0.1
18+
- base16 >=1.0
1919
- bytestring >=0.10.8 && <0.12
2020
- cereal >=0.5.4 && <0.6
2121
- entropy >=0.3.8 && <0.5

secp256k1-haskell.cabal

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

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

77
name: secp256k1-haskell
8-
version: 0.6.1
8+
version: 0.7.0
99
synopsis: Bindings for secp256k1
1010
description: Sign and verify signatures using the secp256k1 library.
1111
category: Crypto
1212
homepage: http://github.com/haskoin/secp256k1-haskell#readme
13-
bug-reports: https://github.com/haskoin/secp256k1-haskell.git/issues
13+
bug-reports: https://github.com/haskoin/secp256k1-haskell/issues
1414
author: Jean-Pierre Rupp
1515
maintainer: [email protected]
1616
copyright: (c) 2017 Jean-Pierre Rupp
@@ -23,7 +23,7 @@ extra-source-files:
2323

2424
source-repository head
2525
type: git
26-
location: https://github.com/haskoin/secp256k1-haskell.git
26+
location: https://github.com/haskoin/secp256k1-haskell
2727

2828
library
2929
exposed-modules:
@@ -39,7 +39,7 @@ library
3939
build-depends:
4040
QuickCheck >=2.9.2 && <2.15
4141
, base >=4.9 && <5
42-
, base16 >=0.3.0.1
42+
, base16 >=1.0
4343
, bytestring >=0.10.8 && <0.12
4444
, cereal >=0.5.4 && <0.6
4545
, deepseq >=1.4.2 && <1.5
@@ -56,14 +56,16 @@ test-suite spec
5656
Crypto.Secp256k1.InternalSpec
5757
Crypto.Secp256k1Spec
5858
Paths_secp256k1_haskell
59+
autogen-modules:
60+
Paths_secp256k1_haskell
5961
hs-source-dirs:
6062
test
6163
ghc-options: -threaded -rtsopts -with-rtsopts=-N
6264
build-depends:
6365
HUnit
6466
, QuickCheck >=2.9.2 && <2.15
6567
, base >=4.9 && <5
66-
, base16 >=0.3.0.1
68+
, base16 >=1.0
6769
, bytestring >=0.10.8 && <0.12
6870
, cereal >=0.5.4 && <0.6
6971
, deepseq >=1.4.2 && <1.5

0 commit comments

Comments
 (0)