File tree Expand file tree Collapse file tree 3 files changed +26
-4
lines changed
Expand file tree Collapse file tree 3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,28 @@ Notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## 0.4.0
9+
10+ ## Added
11+
12+ - Connections to Tor hidden services possible with Tor proxy
13+ - ` Socks5Proxy ` newtype introduced
14+ - ` peer_info ` method introduced
15+ - ` chain_tip ` method introduced
16+ - ` FilterType ` enum exposed
17+ - ` achow ` added to Signet DNS seeds
18+
19+ ## Changed
20+
21+ - ` AllPeers ` transaction broadcast removed
22+ - ` example ` folder renamed to ` examples `
23+ - ` corepc-node ` updated to ` 0.10.0 `
24+
25+ ## Fixes
26+
27+ - ` MessageGenerator ` made infallible
28+ - V1 transport used when using a Tor proxy
29+
830## 0.3.4
931
1032## Fixes
Original file line number Diff line number Diff line change 11[package ]
22name = " bip157"
3- version = " 0.3.4 "
3+ version = " 0.4.0 "
44authors = [" Rob <rob@2140.dev>" ]
55edition = " 2021"
66license = " MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ rust-version = "1.84.0"
1313
1414[dependencies ]
1515addrman = { package = " bitcoin-address-book" , version = " 0.1.1" }
16- bitcoin = { version = " 0.32.7 " , default-features = false , features = [
16+ bitcoin = { version = " 0.32.8 " , default-features = false , features = [
1717 " rand-std" ,
1818] }
1919bip324 = { version = " 0.7.0" , default-features = false , features = [
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ pub(crate) mod reader;
4040pub ( crate ) mod socks;
4141
4242pub const PROTOCOL_VERSION : u32 = 70016 ;
43- pub const KYOTO_VERSION : & str = "0.3.4 " ;
44- pub const RUST_BITCOIN_VERSION : & str = "0.32.7 " ;
43+ pub const KYOTO_VERSION : & str = "0.4.0 " ;
44+ pub const RUST_BITCOIN_VERSION : & str = "0.32.8 " ;
4545
4646const THIRTY_MINS : Duration = Duration :: from_secs ( 60 * 30 ) ;
4747const MESSAGE_TIMEOUT_SECS : Duration = Duration :: from_secs ( 5 ) ;
You can’t perform that action at this time.
0 commit comments