Skip to content

Commit ae657cd

Browse files
chore: release v0.2.0.0 (#64)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 23bea77 commit ae657cd

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This change
33

44
## [Unreleased]
55

6+
## [0.2.0.0] - 2026-03-23
67
### Added (v0.2.0 sync)
78
- **System message customize mode** — new `:customize` mode for `:system-message` enables section-level overrides of the Copilot system prompt. Ten configurable sections: `:identity`, `:tone`, `:tool-efficiency`, `:environment-context`, `:code-change-rules`, `:guidelines`, `:safety`, `:tool-instructions`, `:custom-instructions`, `:last-instructions`. Each section supports static actions (`:replace`, `:remove`, `:append`, `:prepend`) and transform callbacks (1-arity functions receiving current content, returning modified text). New `system-prompt-sections` constant exported from main namespace (upstream PR #816).
89
- **New experimental RPC methods** — thin wrapper functions in `session` namespace for emerging CLI APIs (upstream PR #900):
@@ -341,7 +342,8 @@ All notable changes to this project will be documented in this file. This change
341342
- org.clojure/spec.alpha 0.5.238
342343
- cheshire/cheshire 5.13.0
343344

344-
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.33.0-SNAPSHOT...HEAD
345+
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.0.0...HEAD
346+
[0.2.0.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.33.0-SNAPSHOT...v0.2.0.0
345347
[0.1.33.0-SNAPSHOT]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.32.0...v0.1.33.0-SNAPSHOT
346348
[0.1.32.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.32.0...v0.1.32.0
347349
[0.1.32.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.30.1...v0.1.32.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Add to your `deps.edn`:
2727

2828
```clojure
2929
;; From Maven Central
30-
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.0.0-SNAPSHOT"}
30+
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.0.0"}
3131

3232
;; Or git dependency
3333
io.github.copilot-community-sdk/copilot-sdk-clojure {:git/url "https://github.com/copilot-community-sdk/copilot-sdk-clojure.git"
34-
:git/sha "387cffcafbd0b72d350c5a74c0ca67097a56c017"}
34+
:git/sha "23bea774510faaf4a60bd27ed64a1fa31ad2f4d3"}
3535
```
3636

3737
> **Note:** The Clojars artifact `net.clojars.krukow/copilot-sdk` is deprecated.

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
(:import [java.io File]))
88

99
(def lib 'io.github.copilot-community-sdk/copilot-sdk-clojure)
10-
(def version "0.2.0.0-SNAPSHOT")
10+
(def version "0.2.0.0")
1111
(def class-dir "target/classes")
1212

1313
(defn- try-sh

0 commit comments

Comments
 (0)