From: Matt Corallo Date: Wed, 7 Sep 2022 00:01:12 +0000 (+0000) Subject: Add a folder to track CHANGELOG entries for the next release X-Git-Tag: v0.0.111~10^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=e2495f237ecd79af228229285459bde7e0ea3927;p=rust-lightning Add a folder to track CHANGELOG entries for the next release --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f7cf8c4e..f1e4ce51 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -100,6 +100,10 @@ comment suggesting that you're working on it. If someone is already assigned, don't hesitate to ask if the assigned party or previous commenters are still working on it if it has been awhile. +Any changes that have nontrivial backwards compatibility considerations should +have an entry added in the `pending_changelog` folder which includes the +CHANGELOG entries that should be added in the next release. + Peer review ----------- diff --git a/pending_changelog/1699.txt b/pending_changelog/1699.txt new file mode 100644 index 00000000..75ed45d6 --- /dev/null +++ b/pending_changelog/1699.txt @@ -0,0 +1,2 @@ +`broadcast_node_announcement` has been moved to `PeerManager` from `ChannelManager`. +`PeerManager::new`'s new `current_time` argument must be set to a UNIX timestamp, not a persistent counter, for any existing nodes that upgrade.