-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathrelease-notes.py
executable file
·40 lines (28 loc) · 1.07 KB
/
release-notes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# pylint:disable=invalid-name
"""Print changelog of specified version with markdown stripped"""
import sys
from pathlib import Path
if __name__ == "__main__":
cur_version = sys.argv[1]
with Path(__file__).parent.joinpath("../CHANGELOG.md").open(encoding="UTF-8") as f:
changelog_lines = f.readlines()
# Skip first 7 lines because they contain the "keep a changelog" metadata
changelog_lines = changelog_lines[7:]
iterator = iter(changelog_lines)
for line in iterator:
if line.startswith(f"## \\[{cur_version}\\]"):
break
else:
print(f"Could not find changelog entry for version {cur_version}!")
sys.exit(1)
for line in iterator:
if line.startswith("## \\["):
break
if line.startswith("#"):
line = line.lstrip("#").lstrip()
if line.startswith("-"):
line = line.replace("-", "*", 1)
print(line, end="")