From 70cbdbb363236abd2ce833637f52e327173785a4 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 11 Aug 2020 13:31:33 +0200 Subject: [PATCH] release: Use correct version name and automatically add the link The template was using the version with the `v` prefix, whereas the repro-build script is searching for the version without the prefix --- devtools/changelog.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/devtools/changelog.py b/devtools/changelog.py index de731e24b..c28b306f0 100755 --- a/devtools/changelog.py +++ b/devtools/changelog.py @@ -116,7 +116,9 @@ ${group(groups['removed']) | trim} ${h3} Fixed ${group(groups['fixed']) | trim} ${h3} Security -${group(groups['security']) | trim}""") +${group(groups['security']) | trim} + +[${version}]: https://github.com/ElementsProject/lightning/releases/tag/v${version}""") if __name__ == "__main__": @@ -142,6 +144,6 @@ if __name__ == "__main__": groups=groups, h2='##', h3='###', - version=tocommit, + version=tocommit[1:], date=date, ))