releasenotes

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
Generate a changelog for all changes from the most recent release until now.
生成从最近一次发布到当前所有变更的变更日志。

Steps

步骤

  1. Find the most recent release tag using
    git tag --sort=-creatordate
  2. Get commits and merged PRs since that tag
  3. Look at previous releases in this repo to match their format and style
  4. Categorize changes into sections: Breaking Changes, Added, Changed, Fixed, Notes
  5. Focus on user-facing changes (features, important bug fixes, breaking changes)
  6. Include PR links and contributor attribution
  1. 使用
    git tag --sort=-creatordate
    查找最近的发布标签
  2. 获取该标签之后的提交记录和已合并的PR
  3. 参考本仓库中过往发布的格式和风格
  4. 将变更分类为以下板块:重大变更(Breaking Changes)、新增功能(Added)、功能变更(Changed)、问题修复(Fixed)、说明(Notes)
  5. 重点关注面向用户的变更(新功能、重要Bug修复、重大变更)
  6. 包含PR链接和贡献者署名

Output

输出

Present the changelog in a markdown code block, ready to copy-paste into a GitHub release.
将变更日志以Markdown代码块的形式呈现,可直接复制粘贴到GitHub发布页面中。