Merge pull request #2122 from matrix-org/travis/fix-changelog

Fix changelog generation
This commit is contained in:
Travis Ralston 2019-06-13 19:19:32 -06:00 committed by GitHub
commit 50dee76fa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -962,6 +962,9 @@ class MatrixUnits(Units):
if re.match("^[=]{3,}$", line.strip()):
# the last line was a header - use that as our new title_part
title_part = prev_line.strip()
# take off the last line from the changelog_body_lines because it's the title
if len(changelog_body_lines) > 0:
changelog_body_lines = changelog_body_lines[:len(changelog_body_lines) - 1]
continue
if re.match("^[-]{3,}$", line.strip()):
# the last line is a subheading - drop this line because it's the underline
@ -975,6 +978,7 @@ class MatrixUnits(Units):
# that it renders correctly in the section. We also add newlines so that there's
# intentionally blank lines that make rst2html happy.
changelog_body_lines.append(" " + line + '\n')
prev_line = line
if len(changelog_body_lines) > 0:
changelogs[api_name] = "".join(changelog_body_lines)

View file

@ -36,7 +36,7 @@ Changelog
---------
.. topic:: Version: unstable
.. topic:: Version: %APPSERVICE_RELEASE_LABEL%
{{application_service_changelog}}
This version of the specification is generated from