Add release note for 1.0.0 in NEWS.md (#5329)

* Add release note for 1.0.0

* Fix a small bug in the Python script that compiles the list of contributors

* Clarify governance of CI infrastructure; now PMC is formally in charge

* Address reviewer comment

* Fix typo
This commit is contained in:
Philip Hyunsu Cho
2020-03-03 21:35:43 -08:00
committed by GitHub
parent 5dc8e894c9
commit 9775da02d9
5 changed files with 356 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ contributors = set()
reviewers = set()
for line in git.log(f'{from_commit}..{to_commit}', '--pretty=format:%s', '--reverse'):
m = re.search('\(#([0-9]+)\)', line.rstrip())
m = re.search('\(#([0-9]+)\)$', line.rstrip())
if m:
pr_id = m.group(1)
print(f'PR #{pr_id}')