Conversation
Releases have been created by hand so far. This creates one whenever a v* tag is pushed, with the version's CHANGELOG.md section as the notes (the unreleased section for a prerelease that has no section of its own yet, and GitHub's generated notes only if both are empty). Snapshot tags are skipped.
Monthly, so it stays a trickle rather than a stream of PRs.
GitHub removes Node 20 from the hosted runners on 2026-09-23; checkout, setup-java, setup-node, cache and setup-clojure all have Node 24 majors.
A bare make install failed asking for PROJECT_VERSION, although build.clj already falls back to a placeholder. Default it to 99.99 and keep the guard where it matters: make deploy refuses the default. make test ran clean first, which deleted .cpcache and had every run recompute the classpath. The phony list also named a nrepl target that doesn't exist instead of nrepl-figwheel and nrepl-shadow.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Releases have been created by hand; a v* tag now produces one with the version's changelog section as the notes, and dependabot keeps the action versions from going stale. The CI actions move off the Node 20 runtime that GitHub retires on 2026-09-23. On the Makefile side
make installworks withoutPROJECT_VERSION(deploy still refuses the default), andmake testno longer deletes.cpcacheon every run. Same shape as nrepl/nrepl#480 and #481.Unrelated but worth knowing: CircleCI still follows this repo and posts an error on every push because there's no config; that's a project setting on circleci.com, not something a PR can fix.