diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd6029ff99..1ee4b667635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.1.8 - Dec 2, 2025 - "Async Update Completion" + +## Bug Fixes + * In cases where an MPP payment is claimed while one channel is waiting on a + counterparty's `revoke_and_ack` message and the `revoke_and_ack` message is + received prior to the asynchronous completion of the MPP-claim + `ChannelMonitorUpdate`, the channel will no longer hang (#4236). + * Deserializing invalid `Duration`s can no longer panic (#4172). + + # 0.1.7 - Oct 21, 2025 - "Unstable Release CI" ## Bug Fixes diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index 9e04cffb2eb..8644864c78c 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning" -version = "0.1.7" +version = "0.1.8" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/"