diff --git a/CHANGELOG.md b/CHANGELOG.md index f8872837..75f32a1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.17.3 +### Changed +- Reduce minimum version of text package dependency. + ## 0.17.2 ### Changed - Update lists of seeds for all networks. diff --git a/haskoin-core.cabal b/haskoin-core.cabal index 98a0f5d4..e2e6f570 100644 --- a/haskoin-core.cabal +++ b/haskoin-core.cabal @@ -4,10 +4,10 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: d80c4ed7bf2a0b94d0a98da32652f276e71a29a441c88dd6aed518289433cfb2 +-- hash: c44a29e192f403c6cdbdf31c04928ef363a29f54ea580363b250f3fbcc503ba1 name: haskoin-core -version: 0.17.2 +version: 0.17.3 synopsis: Bitcoin & Bitcoin Cash library for Haskell description: Please see the README on GitHub at category: Bitcoin, Finance, Network @@ -113,7 +113,7 @@ library , secp256k1-haskell >=0.4.0 , split >=0.2.3.3 , string-conversions >=0.4.0.1 - , text >=1.2.4.0 + , text >=1.2.3.0 , time >=1.9.3 , transformers >=0.5.6.2 , unordered-containers >=0.2.10.0 @@ -156,7 +156,7 @@ test-suite spec , deepseq >=1.4.4.0 , entropy >=0.4.1.5 , hashable >=1.3.0.0 - , haskoin-core ==0.17.2 + , haskoin-core , hspec >=2.7.1 , lens >=4.18.1 , lens-aeson >=1.1 @@ -169,7 +169,7 @@ test-suite spec , secp256k1-haskell >=0.4.0 , split >=0.2.3.3 , string-conversions >=0.4.0.1 - , text >=1.2.4.0 + , text >=1.2.3.0 , time >=1.9.3 , transformers >=0.5.6.2 , unordered-containers >=0.2.10.0 diff --git a/package.yaml b/package.yaml index 5192555e..c385191a 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: haskoin-core -version: &version 0.17.2 +version: 0.17.3 synopsis: Bitcoin & Bitcoin Cash library for Haskell description: Please see the README on GitHub at category: Bitcoin, Finance, Network @@ -18,34 +18,34 @@ extra-source-files: - README.md - CHANGELOG.md dependencies: - aeson: ">= 1.4.6.0" - array: ">= 0.5.4.0" - base: ">=4.9 && <5" - base16-bytestring: ">= 0.1.1.6" - bytestring: ">= 0.10.10.0" - cereal: ">= 0.5.8.1" - conduit: ">= 1.3.1.2" - containers: ">= 0.6.2.1" - cryptonite: ">= 0.26" - deepseq: ">= 1.4.4.0" - entropy: ">= 0.4.1.5" - hashable: ">= 1.3.0.0" - hspec: ">= 2.7.1" - memory: ">= 0.15.0" - mtl: ">= 2.2.2" - murmur3: ">= 1.0.3" - network: ">= 3.1.1.1" - QuickCheck: ">= 2.13.2" - split: ">= 0.2.3.3" - safe: ">= 0.3.18" - scientific: ">= 0.3.6.2" - secp256k1-haskell: ">= 0.4.0" - string-conversions: ">= 0.4.0.1" - text: ">= 1.2.4.0" - time: ">= 1.9.3" - transformers: ">= 0.5.6.2" - unordered-containers: ">= 0.2.10.0" - vector: ">= 0.12.1.2" + - aeson >= 1.4.6.0 + - array >= 0.5.4.0 + - base >=4.9 && <5 + - base16-bytestring >= 0.1.1.6 + - bytestring >= 0.10.10.0 + - cereal >= 0.5.8.1 + - conduit >= 1.3.1.2 + - containers >= 0.6.2.1 + - cryptonite >= 0.26 + - deepseq >= 1.4.4.0 + - entropy >= 0.4.1.5 + - hashable >= 1.3.0.0 + - hspec >= 2.7.1 + - memory >= 0.15.0 + - mtl >= 2.2.2 + - murmur3 >= 1.0.3 + - network >= 3.1.1.1 + - QuickCheck >= 2.13.2 + - split >= 0.2.3.3 + - safe >= 0.3.18 + - scientific >= 0.3.6.2 + - secp256k1-haskell >= 0.4.0 + - string-conversions >= 0.4.0.1 + - text >= 1.2.3.0 + - time >= 1.9.3 + - transformers >= 0.5.6.2 + - unordered-containers >= 0.2.10.0 + - vector >= 0.12.1.2 library: source-dirs: src tests: @@ -56,9 +56,9 @@ tests: build-tool-depends: hspec-discover:hspec-discover dependencies: - haskoin-core: *version - hspec: ">= 2.7.1" - HUnit: ">= 1.6.0.0" - QuickCheck: ">= 2.13.2" - lens-aeson: ">= 1.1" - lens: ">= 4.18.1" + - haskoin-core + - hspec >= 2.7.1 + - HUnit >= 1.6.0.0 + - QuickCheck >= 2.13.2 + - lens-aeson >= 1.1 + - lens >= 4.18.1 diff --git a/stack.yaml b/stack.yaml index 429ca200..4bbe58a1 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1,7 +1,5 @@ -resolver: lts-16.22 +resolver: nightly-2020-11-17 nix: packages: - secp256k1 - pkg-config -extra-deps: - - secp256k1-haskell-0.5.0 diff --git a/stack.yaml.lock b/stack.yaml.lock index ec5cf086..6f8888a8 100644 --- a/stack.yaml.lock +++ b/stack.yaml.lock @@ -3,17 +3,10 @@ # For more information, please see the documentation at: # https://docs.haskellstack.org/en/stable/lock_files -packages: -- completed: - hackage: secp256k1-haskell-0.5.0@sha256:26d8897b0b81a1ca46134e3b1cc7784c975880e2334936d92681b07ae9703c26,2158 - pantry-tree: - size: 599 - sha256: e1e0b1d98213c7874a4260b946d1024571ac659e81822d51ea1df7d00f4c14b0 - original: - hackage: secp256k1-haskell-0.5.0 +packages: [] snapshots: - completed: - size: 532414 - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/22.yaml - sha256: e483fb88549fc0f454c190979bf35ac91c7aceff2c0e71e7d8edd11842d772d8 - original: lts-16.22 + size: 552903 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2020/11/17.yaml + sha256: e76442dec702eb06c4a90920ccee445bbef352851746e1d2dac14f775dff2ef3 + original: nightly-2020-11-17