haskoin-node 1.0.0 → 1.0.1
raw patch · 4 files changed
+10/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- haskoin-node.cabal +2/−2
- src/Haskoin/Node.hs +2/−1
- src/Haskoin/Node/Peer.hs +0/−0
CHANGELOG.md view
@@ -4,6 +4,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.0.1] - 2023-08-03++### Changed++- Add compatibility with latest LTS Haskell.+ ## [1.0.0] - 2023-07-28 ### Changed
haskoin-node.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 2f4be0a55ae78de70b6694a331bfa9338f4a9ac58590c07e9f7a044fe58fd9b9+-- hash: 51c15a8bee88319c9b79cc8cdd5f1cdbf3768d63a83aad7e0c94b9d65df6b062 name: haskoin-node-version: 1.0.0+version: 1.0.1 synopsis: P2P library for Bitcoin and Bitcoin Cash description: Please see the README on GitHub at <https://github.com/haskoin/haskoin-node#readme> category: Bitcoin, Finance, Network
src/Haskoin/Node.hs view
@@ -20,8 +20,9 @@ where import Control.Monad (forever)-import Control.Monad.Cont (ContT (..), MonadCont (callCC), cont, lift, runCont, runContT)+import Control.Monad.Cont (ContT (..), MonadCont (callCC), cont, runCont, runContT) import Control.Monad.Logger (MonadLoggerIO)+import Control.Monad.Trans (lift) import Data.Conduit.Network ( ClientSettings, appSink,
src/Haskoin/Node/Peer.hs view