Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Automated release PR that bumps the project version to v0.2.1.1-SNAPSHOT and updates user-facing documentation/changelog to match, as part of the repo’s release workflow.
Changes:
- Bump project version in
build.cljto0.2.1.1-SNAPSHOT. - Update README installation coordinates (Maven + git SHA) to the new version/commit.
- Stamp
CHANGELOG.mdwith a new0.2.1.1-SNAPSHOTsection and update comparison links.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| build.clj | Version bump to 0.2.1.1-SNAPSHOT (used by build/release tooling). |
| README.md | Updates dependency coordinates and git SHA for installation instructions. |
| CHANGELOG.md | Adds a new version section and updates compare links for the release. |
| ```clojure | ||
| ;; From Maven Central | ||
| io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.1.0"} | ||
| io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.1.1-SNAPSHOT"} |
There was a problem hiding this comment.
README lists a -SNAPSHOT version under “From Maven Central”, but build.clj deploy logic publishes -SNAPSHOT versions to the Maven Central snapshots repository (not the default Maven Central releases repo). As written, users copy/pasting this will likely fail to resolve the dependency unless they add the snapshots repository (or you change the snippet to a non-SNAPSHOT release version).
Suggested change
| io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.1.1-SNAPSHOT"} | |
| io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.1.1"} |
This was referenced Mar 26, 2026
Closed
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.
Automated release PR for v0.2.1.1-SNAPSHOT. Created by the Release workflow (run 23593814860).