Update CHANGELOG.md with the changes for version $ARGUMENTS.
Rules
- •Each version gets its own
## x.y.zsection - •Newest version at the top (below the
# Changelogheading) - •List ALL changes: features, bug fixes, refactors, improvements
- •Keep entries concise (one line each)
- •Use plain text, no bold or special formatting per entry
Steps
- •Read the current
CHANGELOG.md - •Review git log since the last tagged version:
git log $(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD --oneline - •Group changes and write clear entries under the new version heading
- •Add the new version section at the top of the file