Skip to content

Commit 49b2a32

Browse files
authored
Merge pull request #554 from rustaceanrob/26-3-11-release-0.4.2
Release `0.4.2`
2 parents 295dc0c + faab20b commit 49b2a32

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2
9+
10+
## Fixed
11+
12+
- Unchecked division in average fee rate calculation
13+
814
## 0.4.1
915

1016
## Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bip157"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Rob <rob@2140.dev>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

src/network/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub(crate) mod reader;
4040
pub(crate) mod socks;
4141

4242
pub const PROTOCOL_VERSION: u32 = 70016;
43-
pub const KYOTO_VERSION: &str = "0.4.1";
43+
pub const KYOTO_VERSION: &str = "0.4.2";
4444
pub const RUST_BITCOIN_VERSION: &str = "0.32.8";
4545

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

0 commit comments

Comments
 (0)