Skip to content

Commit 0dab38b

Browse files
chore: release v0.3.0.0-SNAPSHOT (#92)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 52b605c commit 0dab38b

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.3.0.0-SNAPSHOT] - 2026-04-23
67
### Added (v0.3.0-preview.0 sync)
78
- **`defaultAgent.excludedTools` session option** — new `:default-agent {:excluded-tools [...]}` config for create, resume, and join session paths. This hides selected tools from the built-in/default agent while preserving tool availability for custom agents. (upstream commit `b1b0df5c`)
89
- **Session FS provider adapter** — new `create-session-fs-adapter` helper adapts provider-style filesystem functions into structured `sessionFs.*` RPC results. Session factories now also auto-adapt provider-style maps while preserving the existing low-level one-arg handler contract. (upstream commit `a3e273c9`)
@@ -457,7 +458,8 @@ All notable changes to this project will be documented in this file. This change
457458
- org.clojure/spec.alpha 0.5.238
458459
- cheshire/cheshire 5.13.0
459460

460-
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.2.0...HEAD
461+
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.3.0.0-SNAPSHOT...HEAD
462+
[0.3.0.0-SNAPSHOT]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.2.0...v0.3.0.0-SNAPSHOT
461463
[0.2.2.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.1...v0.2.2.0
462464
[0.2.1.1]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.0...v0.2.1.1
463465
[0.2.1.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.1-SNAPSHOT...v0.2.1.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.2.0"}
30+
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.3.0.0-SNAPSHOT"}
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 "ebaece4bb8aeb54b8df965531b5fb160cf149ebc"}
34+
:git/sha "52b605c629443a446c2c63e16906e759c11ae6bd"}
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.2.0")
10+
(def version "0.3.0.0-SNAPSHOT")
1111
(def class-dir "target/classes")
1212

1313
(defn- try-sh

0 commit comments

Comments
 (0)