This checklist makes the v1.1.0 release repeatable and keeps irreversible
Clojars publication separate from validation.
CHANGELOG.md contains 1.1.0 notes dated 2026-07-271.1.0reduce-packets and live queue options1.1.0-SNAPSHOTRun from the repository root:
clojure -T:build javac
clojure -M:test
clojure -M:eastwood
clj-kondo --lint src test dev
clojure-lsp clean-ns --dry
clojure-lsp format --dry
dev/script/mdlint.sh
clojure -M:perf-gate
clojure -M:perf --mode offline --profile quick --output target/perf-v1.1.0
PACLO_VERSION=1.1.0 clojure -T:build jar
Confirm the release artifact and embedded Maven metadata:
test -f target/paclo-1.1.0.jar
test -f target/classes/META-INF/maven/org.clojars.nanto/paclo/pom.xml
grep -F "<version>1.1.0</version>" \
target/classes/META-INF/maven/org.clojars.nanto/paclo/pom.xml
mainmain commit1.1.0 jar and POMAfter merging the preparation PR, run:
gh workflow run publish.yml \
--ref main \
-f version=1.1.0 \
-f dry_run=true
The dry-run performs source/version validation, tests, the performance gate, and the release build. It does not contact Clojars.
Recorded preparation results on 2026-07-27:
warn=1000, fail=1200)1.1.0 coordinates and public namespaces verifiedResolve and review the exact commit before creating the tag:
git switch main
git pull --ff-only origin main
git status --short
git log -1 --oneline
git tag -a v1.1.0 -m "v1.1.0"
git push origin v1.1.0
Pushing the tag starts the publish workflow with publication enabled. Confirm
that it publishes org.clojars.nanto/paclo:1.1.0.
If the tag-triggered workflow fails before Clojars accepts the artifact, use the manual recovery path:
gh workflow run publish.yml \
--ref main \
-f version=1.1.0 \
-f dry_run=false
Do not use the recovery path after Clojars reports a successful publication; released coordinates are immutable and cannot be overwritten.
org.clojars.nanto/paclo:1.1.01.1.0After Clojars succeeds, create the GitHub Release:
gh release create v1.1.0 \
--verify-tag \
--title v1.1.0 \
--generate-notes
If a release defect is discovered, do not move the tag or replace the Clojars artifact. Correct it with a new patch release.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |