haskoin-core 1.0.4 → 1.1.0
raw patch · 8 files changed
+16/−4 lines, 8 filesdep ~secp256k1-haskellPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: secp256k1-haskell
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- haskoin-core.cabal +4/−4
- src/Haskoin.hs +1/−0
- src/Haskoin/Block.hs +1/−0
- src/Haskoin/Crypto.hs +1/−0
- src/Haskoin/Crypto/Keys.hs +1/−0
- src/Haskoin/Network.hs +1/−0
- src/Haskoin/Transaction.hs +1/−0
CHANGELOG.md view
@@ -5,6 +5,12 @@ 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). +## [1.1.0] - 2023-03-14++### Changed++- Update upstream dependencies & LTS Haskell.+ ## [1.0.4] - 2023-10-09 ### Changed
haskoin-core.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.2.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack name: haskoin-core-version: 1.0.4+version: 1.1.0 synopsis: Bitcoin & Bitcoin Cash library for Haskell description: Please see the README on GitHub at <https://github.com/haskoin/haskoin-core#readme> category: Bitcoin, Finance, Network@@ -129,7 +129,7 @@ , network >=3.1.1.1 , safe >=0.3.18 , scientific >=0.3.6.2- , secp256k1-haskell >=1.0.0+ , secp256k1-haskell >=1.2.0 , split >=0.2.3.3 , string-conversions >=0.4.0.1 , text >=1.2.3.0@@ -190,7 +190,7 @@ , network >=3.1.1.1 , safe >=0.3.18 , scientific >=0.3.6.2- , secp256k1-haskell >=1.0.0+ , secp256k1-haskell >=1.2.0 , split >=0.2.3.3 , string-conversions >=0.4.0.1 , text >=1.2.3.0
src/Haskoin.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin -- Description : Bitcoin (BTC/BCH) Libraries for Haskell
src/Haskoin/Block.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin.Block -- Copyright : No rights reserved
src/Haskoin/Crypto.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin.Crypto -- Copyright : No rights reserved
src/Haskoin/Crypto/Keys.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin.Keys -- Copyright : No rights reserved
src/Haskoin/Network.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin.Network -- Copyright : No rights reserved
src/Haskoin/Transaction.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DuplicateRecordFields #-} -- | -- Module : Haskoin.Transaction -- Copyright : No rights reserved