Skip to content

Commit 8f03e58

Browse files
authored
Merge pull request #547 from rustaceanrob/26-3-6-release-0.4.0
Release `0.4.0`
2 parents dcde237 + b0b6265 commit 8f03e58

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ Notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bip157"
3-
version = "0.3.4"
3+
version = "0.4.0"
44
authors = ["Rob <rob@2140.dev>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ rust-version = "1.84.0"
1313

1414
[dependencies]
1515
addrman = { 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
] }
1919
bip324 = { version = "0.7.0", default-features = false, features = [

src/network/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ pub(crate) mod reader;
4040
pub(crate) mod socks;
4141

4242
pub 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

4646
const THIRTY_MINS: Duration = Duration::from_secs(60 * 30);
4747
const MESSAGE_TIMEOUT_SECS: Duration = Duration::from_secs(5);

0 commit comments

Comments
 (0)