From: Elias Rohrer Date: Fri, 5 May 2023 09:26:50 +0000 (+0200) Subject: Make `lightning-transaction-sync` compat notice a bit more explicit X-Git-Tag: v0.0.116-alpha1~44^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=ff865eb6858696eb6f9ad4a18ec4631686017001;p=rust-lightning Make `lightning-transaction-sync` compat notice a bit more explicit As `lightning-transaction-sync` was introduced with 0.0.114 and depended on prior changes in the same release cycle we deemed it reasonable to omit the implicitly limited backwards compatibility. It however turns out this might be confusing to users copy/pasting the codebase. Here we therefore spell out the implicit dependency on 0.0.114 and above. --- diff --git a/lightning-transaction-sync/src/lib.rs b/lightning-transaction-sync/src/lib.rs index 05b71d21..ca3ce3f8 100644 --- a/lightning-transaction-sync/src/lib.rs +++ b/lightning-transaction-sync/src/lib.rs @@ -13,7 +13,8 @@ //! //! ## Version Compatibility //! -//! Currently this crate is compatible with nodes that were created with LDK version 0.0.113 and above. +//! Currently this crate is compatible with LDK version 0.0.114 and above using channels which were +//! created on LDK version 0.0.113 and above. //! //! ## Usage Example: //!