-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1284 from effigies/doc/release-notes
MNT: Add tool for generating GitHub-friendly release notes from RST changelog
- Loading branch information
Showing
3 changed files
with
100 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
#!/usr/bin/env python | ||
import re | ||
import sys | ||
from pathlib import Path | ||
|
||
CHANGELOG = Path(__file__).parent.parent / 'Changelog' | ||
|
||
# Match release lines like "5.2.0 (Monday 11 December 2023)" | ||
RELEASE_REGEX = re.compile(r"""((?:\d+)\.(?:\d+)\.(?:\d+)) \(\w+ \d{1,2} \w+ \d{4}\)$""") | ||
|
||
|
||
def main(): | ||
version = sys.argv[1] | ||
output = sys.argv[2] | ||
if output == '-': | ||
output = sys.stdout | ||
else: | ||
output = open(output, 'w') | ||
|
||
release_notes = [] | ||
in_release_notes = False | ||
|
||
with open(CHANGELOG) as f: | ||
for line in f: | ||
match = RELEASE_REGEX.match(line) | ||
if match: | ||
if in_release_notes: | ||
break | ||
in_release_notes = match.group(1) == version | ||
next(f) # Skip the underline | ||
continue | ||
|
||
if in_release_notes: | ||
release_notes.append(line) | ||
|
||
# Drop empty lines at start and end | ||
while release_notes and not release_notes[0].strip(): | ||
release_notes.pop(0) | ||
while release_notes and not release_notes[-1].strip(): | ||
release_notes.pop() | ||
|
||
# Join lines | ||
release_notes = ''.join(release_notes) | ||
|
||
# Remove line breaks when they are followed by a space | ||
release_notes = re.sub(r'\n +', ' ', release_notes) | ||
|
||
# Replace pr/<number> with #<number> for GitHub | ||
release_notes = re.sub(r'\(pr/(\d+)\)', r'(#\1)', release_notes) | ||
|
||
# Replace :mod:`package.X` with [package.X](...) | ||
release_notes = re.sub( | ||
r':mod:`nibabel\.(.*)`', | ||
r'[nibabel.\1](https://nipy.org/nibabel/reference/nibabel.\1.html)', | ||
release_notes, | ||
) | ||
# Replace :class/func/attr:`package.module.X` with [package.module.X](...) | ||
release_notes = re.sub( | ||
r':(?:class|func|attr):`(nibabel\.\w*)(\.[\w.]*)?\.(\w+)`', | ||
r'[\1\2.\3](https://nipy.org/nibabel/reference/\1.html#\1\2.\3)', | ||
release_notes, | ||
) | ||
release_notes = re.sub( | ||
r':(?:class|func|attr):`~(nibabel\.\w*)(\.[\w.]*)?\.(\w+)`', | ||
r'[\3](https://nipy.org/nibabel/reference/\1.html#\1\2.\3)', | ||
release_notes, | ||
) | ||
# Replace :meth:`package.module.class.X` with [package.module.class.X](...) | ||
release_notes = re.sub( | ||
r':meth:`(nibabel\.[\w.]*)\.(\w+)\.(\w+)`', | ||
r'[\1.\2.\3](https://nipy.org/nibabel/reference/\1.html#\1.\2.\3)', | ||
release_notes, | ||
) | ||
release_notes = re.sub( | ||
r':meth:`~(nibabel\.[\w.]*)\.(\w+)\.(\w+)`', | ||
r'[\3](https://nipy.org/nibabel/reference/\1.html#\1.\2.\3)', | ||
release_notes, | ||
) | ||
|
||
def python_doc(match): | ||
module = match.group(1) | ||
name = match.group(2) | ||
return f'[{name}](https://docs.python.org/3/library/{module.lower()}.html#{module}.{name})' | ||
|
||
release_notes = re.sub(r':meth:`~([\w.]+)\.(\w+)`', python_doc, release_notes) | ||
|
||
output.write('## Release notes\n\n') | ||
output.write(release_notes) | ||
|
||
output.close() | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters