From 4e574dbd437179571b38c0d96be9c7f9f9132c0f Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Wed, 22 Nov 2023 17:48:00 +0100 Subject: [PATCH] Remove initial changelog entry creation support Signed-off-by: Gabor Mezei --- scripts/assemble_changelog.py | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/scripts/assemble_changelog.py b/scripts/assemble_changelog.py index 81ce68223..b2fa96a07 100755 --- a/scripts/assemble_changelog.py +++ b/scripts/assemble_changelog.py @@ -128,19 +128,11 @@ class TextChangelogFormat(ChangelogFormat): def extract_top_version(cls, changelog_file_content): """A version section starts with a line starting with '='.""" m = re.search(cls._top_version_re, changelog_file_content) - if m: - top_version_start = m.start(1) - top_version_end = m.end(2) - top_version_title = m.group(1) - top_version_body = m.group(2) - name = re.match(cls._name_re, top_version_title).group(1) - # No entries found - else: - top_version_start = None - top_version_end = None - name = 'xxx' - top_version_title = '' - top_version_body = '' + top_version_start = m.start(1) + top_version_end = m.end(2) + top_version_title = m.group(1) + top_version_body = m.group(2) + name = re.match(cls._name_re, top_version_title).group(1) if cls.is_released_version(top_version_title): top_version_end = top_version_start top_version_title = cls._unreleased_version_text.format(name) + '\n\n' @@ -272,10 +264,8 @@ class ChangeLog: """Write the changelog to the specified file. """ with open(filename, 'w', encoding='utf-8') as out: - if self.header: - out.write(self.header) - if self.top_version_title: - out.write(self.top_version_title) + out.write(self.header) + out.write(self.top_version_title) for title, body in self.categories.items(): if not body: continue