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/) 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). 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 ## 0.4.0
### Changed ### Changed
- Remove fragile ForeignPtr implementation in favor of just storing ByteStrings. - Remove fragile ForeignPtr implementation in favor of just storing ByteStrings.

View File

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

View File

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