From baa815224862e8591b4dcd5265ad8332a2d4856a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 May 2021 06:18:42 +0530 Subject: [PATCH] Add link to changelog in github release notes Fixes #3588 --- publish.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/publish.py b/publish.py index 514de101d..60ca3a562 100755 --- a/publish.py +++ b/publish.py @@ -321,7 +321,9 @@ class GitHub(Base): # {{{ 'tag_name': self.current_tag_name, 'target_commitish': 'master', 'name': 'version %s' % self.version, - 'body': 'Release version %s. GPG key used for signing tarballs is: https://calibre-ebook.com/signatures/kovid.gpg' % self.version, + 'body': f'Release version {self.version}.' + ' For changelog, see https://sw.kovidgoyal.net/kitty/changelog.html' + ' GPG key used for signing tarballs is: https://calibre-ebook.com/signatures/kovid.gpg', 'draft': False, 'prerelease': False }))