show all release notes in list-changes

If the release request includes a diff-start instruction, use that as
the starting point for release notes instead of the most recent tag.

Change-Id: I8a4f78366bfc19d667057629fb9f772aaa6b2ff9
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann
2018-01-26 17:09:39 -05:00
parent cec622a662
commit 37272b701b

View File

@@ -546,7 +546,7 @@ def main():
notes = release_notes.generate_release_notes(
repo=project['repo'],
repo_path=os.path.join(workdir, project['repo']),
start_revision=start_range,
start_revision=new_release.get('diff-start', start_range),
end_revision=new_release['version'],
show_dates=True,
skip_requirement_merges=True,