wikimedia/update-history

一个简单的工具,用于更新HISTORY.md文件

1.0.1 2021-08-06 03:55 UTC

This package is auto-updated.

Last update: 2024-09-06 11:03:42 UTC


README

Latest Stable Version License

wikimedia/update-history

这是一个简单的工具,用于在发布库时更新HISTORY.md文件。

有关此库的更多文档可以在mediawiki.org上找到。

用法

制作发布

步骤 1

bin/update-history [patch|minor|major]

这会递增补丁版本的版本号(或者,如果你指定,则为次要或主要版本),并使用新的版本号和当前日期更新HISTORY.md。

步骤 2

git add HISTORY.md
git commit -m "Release <My Package> <VERSION>"
git tag <VERSION>

这一步骤将在未来自动化。

步骤 3

bin/update-history

这将在HISTORY.md中添加一个新的占位符部分 "x.x.x (尚未发布)"。

步骤 4

git add HISTORY.md
git commit -m "Bump HISTORY.md after release"

这一步骤将在未来自动化。

步骤 5(可选)

将这些提交推送到你的代码审查系统。

git review

当它们被合并时,你可能需要验证上面创建的标签是否仍然对应于最终的合并提交,如果不是

git tag -f <new git hash> <VERSION>

最后,推诿新的标签

git push origin <VERSION>