mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-17 02:25:57 -05:00
35 lines
873 B
Python
35 lines
873 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
import git.repo
|
|
import re
|
|
import pathlib
|
|
import release_gen
|
|
|
|
HERE = pathlib.Path(__file__).absolute().parent
|
|
|
|
MERGE_PATTERN = re.compile(r'Merge pull request #(\d+)')
|
|
|
|
|
|
def main(repo: git.repo.Repo, version: str):
|
|
major, minor, patch = [int(x) for x in version.split('.')]
|
|
rev = f'v{major}.{minor-1}.0..v{major}.{minor}.0'
|
|
|
|
print(f'# v{version}: 1.0準備')
|
|
print()
|
|
for item in repo.iter_commits(rev=rev):
|
|
m = MERGE_PATTERN.match(item.message)
|
|
if m:
|
|
# merge commit
|
|
pr = m[1]
|
|
lines = item.message.splitlines()
|
|
|
|
print(
|
|
f'* [[\\#{pr}](https://github.com/vrm-c/UniVRM/pull/{pr})] {lines[2]}'
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
repo = git.repo.Repo(str(HERE.parent))
|
|
version = release_gen.get_version()
|
|
main(repo, version)
|