From d211e1ff1ccac2ab21f12ab1957dc2287f123831 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 7 Apr 2021 11:58:05 +0930 Subject: [PATCH] devtools: add experimental section. Signed-off-by: Rusty Russell --- devtools/changelog.py | 6 +++--- doc/STYLE.md | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/devtools/changelog.py b/devtools/changelog.py index e61b754a2..dac8b535f 100755 --- a/devtools/changelog.py +++ b/devtools/changelog.py @@ -17,7 +17,7 @@ sections = [ 'deprecated', 'fixed', 'removed', - 'security', + 'experimental', ] repo = 'ElementsProject/lightning' @@ -132,8 +132,8 @@ ${h3} Removed ${group(groups['removed']) | trim} ${h3} Fixed ${group(groups['fixed']) | trim} -${h3} Security -${group(groups['security']) | trim} +${h3} EXPERIMENTAL +${group(groups['experimental']) | trim} % for l in links: [${l.ref}]: ${l.url} diff --git a/doc/STYLE.md b/doc/STYLE.md index d655bfd5a..06c9ddd61 100644 --- a/doc/STYLE.md +++ b/doc/STYLE.md @@ -230,8 +230,7 @@ have a line with one of the following prefixes: not yet removed - `Changelog-Fixed: ` if a bug has been fixed - `Changelog-Removed: ` if a (previously deprecated) feature has been removed - - `Changelog-Security: ` if a security issue has been addressed and the users - will need to upgrade in order to stay secure + - `Changelog-Experimental: ` if it only affects --enable-experimental-features builds, or experimental- config options. In case you think the pull request is small enough not to require a changelog entry please use `Changelog-None` in one of the commit messages to opt out.