haskoin-node 0.8.1 → 0.8.2
raw patch · 3 files changed
+8/−2 lines, 3 files
Files
- CHANGELOG.md +4/−0
- haskoin-node.cabal +2/−2
- src/Haskoin/Node.hs +2/−0
CHANGELOG.md view
@@ -4,6 +4,10 @@ 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.8.2+### Added+- Expose `ChainMessage` and `ManagerMessage` types from `Haskoin.Node` module.+ ## 0.8.1 ### Changed - Corrected documentation for `killPeer` function.
haskoin-node.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: fd286cff325b89ae33fca22561638234dcb7be4013930df6672c4eeb90282950+-- hash: 36262f24dd4ab0072b836e69359d401f0c68d0ad7a9b50db212087b10a6b071d name: haskoin-node-version: 0.8.1+version: 0.8.2 synopsis: Haskoin Node P2P library for Bitcoin and Bitcoin Cash description: Bitcoin and Bitcoin Cash peer-to-peer protocol library featuring headers-first synchronisation. category: Bitcoin, Finance, Network
src/Haskoin/Node.hs view
@@ -21,6 +21,8 @@ , Peer , Chain , Manager+ , ChainMessage+ , ManagerMessage , OnlinePeer(..) , NodeConfig(..) , NodeEvent(..)