releasenotes
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGenerate a changelog for all changes from the most recent release until now.
生成从最近一次发布到当前所有变更的变更日志。
Steps
步骤
- Find the most recent release tag using
git tag --sort=-creatordate - Get commits and merged PRs since that tag
- Look at previous releases in this repo to match their format and style
- Categorize changes into sections: Breaking Changes, Added, Changed, Fixed, Notes
- Focus on user-facing changes (features, important bug fixes, breaking changes)
- Include PR links and contributor attribution
- 使用 查找最近的发布标签
git tag --sort=-creatordate - 获取该标签之后的提交记录和已合并的PR
- 参考本仓库中过往发布的格式和风格
- 将变更分类为以下板块:重大变更(Breaking Changes)、新增功能(Added)、功能变更(Changed)、问题修复(Fixed)、说明(Notes)
- 重点关注面向用户的变更(新功能、重要Bug修复、重大变更)
- 包含PR链接和贡献者署名
Output
输出
Present the changelog in a markdown code block, ready to copy-paste into a GitHub release.
将变更日志以Markdown代码块的形式呈现,可直接复制粘贴到GitHub发布页面中。