From b5384e28b7dfa4db081cda1859b5b9fced8325d4 Mon Sep 17 00:00:00 2001 From: rustaceanrob Date: Tue, 10 Mar 2026 11:04:32 +0000 Subject: [PATCH] Release `0.4.1` --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/network/mod.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca4697f9..431464e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.4.1 + +## Added + +- Re-add support for fetching witness data with blocks + ## 0.4.0 ## Added diff --git a/Cargo.toml b/Cargo.toml index 745db5cb..bdd046f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bip157" -version = "0.4.0" +version = "0.4.1" authors = ["Rob "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/src/network/mod.rs b/src/network/mod.rs index 58b2f67e..fe09ce3a 100644 --- a/src/network/mod.rs +++ b/src/network/mod.rs @@ -40,7 +40,7 @@ pub(crate) mod reader; pub(crate) mod socks; pub const PROTOCOL_VERSION: u32 = 70016; -pub const KYOTO_VERSION: &str = "0.4.0"; +pub const KYOTO_VERSION: &str = "0.4.1"; pub const RUST_BITCOIN_VERSION: &str = "0.32.8"; const THIRTY_MINS: Duration = Duration::from_secs(60 * 30);