From 413e5f2272e77cf30c5f7e16a9598d37660c0bcf Mon Sep 17 00:00:00 2001 From: rustaceanrob Date: Mon, 13 Oct 2025 10:04:04 +0100 Subject: [PATCH] Release `0.3.0` --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/network/mod.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 848ce259..13814fcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ Notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.3.3 + +## Fixes + +- Reduce the stack allocation of the address manager +- Use `BufReader` for `TcpStream` + ## 0.3.0 ## Changed diff --git a/Cargo.toml b/Cargo.toml index 9cecac91..c99a795f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bip157" -version = "0.3.2" +version = "0.3.3" authors = ["Rob "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/src/network/mod.rs b/src/network/mod.rs index 408b98ea..5a116d26 100644 --- a/src/network/mod.rs +++ b/src/network/mod.rs @@ -31,7 +31,7 @@ pub(crate) mod reader; pub(crate) mod socks; pub const PROTOCOL_VERSION: u32 = 70016; -pub const KYOTO_VERSION: &str = "0.3.2"; +pub const KYOTO_VERSION: &str = "0.3.3"; pub const RUST_BITCOIN_VERSION: &str = "0.32.7"; const THIRTY_MINS: Duration = Duration::from_secs(60 * 30);