diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-16 11:53:15 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-16 11:53:15 +0200 |
| commit | 0b9bbe2e5aafb69ddb069fed1819bee5eb0571bf (patch) | |
| tree | 6a9b0f6e2bd502fc7b537dac43738c86473e26de /CLAUDE.md | |
| parent | 3610ad0b72d3bee64c54cb475516a6a20442c07f (diff) | |
| download | sbo-dockerbuild-0b9bbe2e5aafb69ddb069fed1819bee5eb0571bf.tar.gz sbo-dockerbuild-0b9bbe2e5aafb69ddb069fed1819bee5eb0571bf.zip | |
release 1.1.0v1.1.0
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
| -rw-r--r-- | CLAUDE.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -160,16 +160,22 @@ the Slackware target, so their project-version flag is `-V` only. To cut a release (bump `X.Y.Z`): ```bash +# 1. add a dated section for X.Y.Z at the top of ChangeLog.md (Keep a Changelog +# format: Added / Changed / Fixed / Removed), summarizing the commits since +# the last tag (git log vPREV..HEAD). sed -i 's/^PROJECT_VERSION="[^"]*"/PROJECT_VERSION="X.Y.Z"/' \ test-build install.sh image-builder/*.sh git commit -aS -m "release X.Y.Z" git tag -s vX.Y.Z -m "vX.Y.Z" git push origin master --tags # both remotes (danix_git + forge) +# --note-file feeds the ChangeLog section as the release body. tea release create --repo danix/sbo-dockerbuild --tag vX.Y.Z --title vX.Y.Z ``` The `sed` anchors on `^PROJECT_VERSION="..."`, which never matches the SBo package `VERSION=`/`OPT_VERSION=` vars, so it only touches the project const. +`ChangeLog.md` is the human-facing history; update it in the same release +commit as the version bump. ## Deployment |
