Update Wox CHANGELOG.md based on commits since the last release. Use when the user asks to "update changelog", "write release notes", or "summarize changes since last release" and the output must follow the repository's existing changelog format.
Update CHANGELOG.md from the latest released version to HEAD and keep wording, section order, and markdown style consistent with existing entries.
CHANGELOG.md and detect the target section (usually newest version at the top).git tag --sort=-creatordate.last_release_tag..HEAD by default.git log --oneline --no-merges <range>.git show --stat --oneline <sha> to classify user-facing impact.Add: new user-visible features/settings/components.Improve: behavioral or UX improvements without new core capability.Fix: user-facing bug fixes/regressions.## v2.0.1 -).Add, Improve, Fix.[`Shell`] or [`Clipboard`].#4339.git tag --sort=-creatordate | head -n 20
sed -n '1,120p' CHANGELOG.md
git log --oneline --no-merges <last_tag>..HEAD
git show --stat --oneline <sha>
git diff -- CHANGELOG.md
CHANGELOG.md directly.