Do cabal changes in package.yaml

This commit is contained in:
Jean-Pierre Rupp 2020-10-16 15:41:12 +01:00
parent c038c74ac6
commit d647a3bfd1
No known key found for this signature in database
GPG Key ID: 93391726EAFA0C5D
3 changed files with 39 additions and 35 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
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).
## 0.5.0
### Changed
- Include version boundaries and other changes submitted by Emily Pillmore.
## 0.4.0
### Changed
- Remove fragile ForeignPtr implementation in favor of just storing ByteStrings.

View File

@ -1,5 +1,5 @@
name: secp256k1-haskell
version: 0.4.0
version: 0.5.0
synopsis: Bindings for secp256k1
description: Sign and verify signatures using the secp256k1 library.
category: Crypto
@ -10,20 +10,22 @@ license: MIT
license-file: LICENSE
github: haskoin/secp256k1-haskell.git
homepage: http://github.com/haskoin/secp256k1-haskell#readme
verbatim:
cabal-version: 1.24
extra-source-files:
- CHANGELOG.md
- README.md
dependencies:
- base >=4.8 && <5
- base16-bytestring
- bytestring
- cereal
- entropy
- deepseq
- hashable
- QuickCheck
- string-conversions
- unliftio
- base >=4.9 && <5
- base16-bytestring >=0.1.1.6 && <1.1
- bytestring >=0.10.8 && <0.11
- cereal >=0.5.4 && <0.6
- entropy >=0.3.8 && <0.5
- deepseq >=1.4.2 && <1.5
- hashable >=1.2.6 && <1.4
- QuickCheck >=2.9.2 && <2.15
- string-conversions >=0.4 && <0.5
- unliftio-core >=0.1.0 && <0.3
library:
source-dirs: src
generated-exposed-modules:

View File

@ -1,13 +1,11 @@
cabal-version: 1.24
-- This file has been generated from package.yaml by hpack version 0.33.0.
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 911c4f6cd260a60f86d8394bdda0aa90dc6cb66e94f5d2adf02a14f7b2d38047
name: secp256k1-haskell
version: 0.4.0
version: 0.5.0
synopsis: Bindings for secp256k1
description: Sign and verify signatures using the secp256k1 library.
category: Crypto
@ -39,16 +37,16 @@ library
pkgconfig-depends:
libsecp256k1
build-depends:
QuickCheck >=2.9.2 && <2.15
, base >=4.9 && <5
, base16-bytestring >=0.1.1.6 && <1.1
, bytestring >=0.10.8 && <0.11
, cereal >=0.5.4 && <0.6
, deepseq >=1.4.2 && <1.5
, entropy >=0.3.8 && <0.5
, hashable >=1.2.6 && <1.4
, string-conversions >=0.4 && <0.5
, unliftio-core >=0.1.0 && <0.3
QuickCheck >=2.9.2 && <2.15
, base >=4.9 && <5
, base16-bytestring >=0.1.1.6 && <1.1
, bytestring >=0.10.8 && <0.11
, cereal >=0.5.4 && <0.6
, deepseq >=1.4.2 && <1.5
, entropy >=0.3.8 && <0.5
, hashable >=1.2.6 && <1.4
, string-conversions >=0.4 && <0.5
, unliftio-core >=0.1.0 && <0.3
default-language: Haskell2010
test-suite spec
@ -63,19 +61,19 @@ test-suite spec
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
HUnit
, QuickCheck
, base >=4.8 && <5
, base16-bytestring
, bytestring
, cereal
, deepseq
, entropy
, hashable
, QuickCheck >=2.9.2 && <2.15
, base >=4.9 && <5
, base16-bytestring >=0.1.1.6 && <1.1
, bytestring >=0.10.8 && <0.11
, cereal >=0.5.4 && <0.6
, deepseq >=1.4.2 && <1.5
, entropy >=0.3.8 && <0.5
, hashable >=1.2.6 && <1.4
, hspec
, monad-par
, mtl
, secp256k1-haskell
, string-conversions
, unliftio
, string-conversions >=0.4 && <0.5
, unliftio-core >=0.1.0 && <0.3
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover