mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2025-11-25 11:29:36 +08:00
18 lines
435 B
Python
18 lines
435 B
Python
from git_changelog.cli import build_and_render
|
|
|
|
# 运行这段脚本自动生成CHANGELOG.md文件
|
|
|
|
build_and_render(
|
|
repository=".",
|
|
output="CHANGELOG.md",
|
|
convention="angular",
|
|
provider="github",
|
|
template="keepachangelog",
|
|
parse_trailers=True,
|
|
parse_refs=False,
|
|
sections=["build", "deps", "feat", "fix", "refactor"],
|
|
versioning="pep440",
|
|
bump="1.1.2", # 指定bump版本
|
|
in_place=True,
|
|
)
|