Update README.md

This commit is contained in:
2026-03-23 17:03:58 -06:00
parent 149d308f9b
commit b14662a666

View File

@@ -72,3 +72,11 @@ args = [
"-O3", "-O3",
] ]
``` ```
## Creating Changelogs
Use the following command to create a changelog:
```sh
git log --oneline (git describe --tags --abbrev=0)..HEAD | sed 's/^/- /' | xclip -selection clipboard
```