Skip to content

Commit c868e25

Browse files
chore: release v0.2.1.0 (#84)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 875da82 commit c868e25

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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.1.0] - 2026-04-04
67
### Added (v0.2.1 sync)
78
- **`resolvedByHook` guard on `permission.requested`** — when the runtime resolves a permission request via a `permissionRequest` hook, the broadcast event includes `resolvedByHook: true`. The SDK now skips the client's `:on-permission-request` handler and does not send the `handlePendingPermissionRequest` RPC, preventing duplicate responses. Event subscribers still observe the event (upstream PR #999, runtime 1.0.17).
89
- **New permission result kinds**`:denied-by-content-exclusion-policy` and `:denied-by-permission-request-hook` added to `::permission-result-kind` spec (upstream PR #999).
@@ -389,7 +390,8 @@ All notable changes to this project will be documented in this file. This change
389390
- org.clojure/spec.alpha 0.5.238
390391
- cheshire/cheshire 5.13.0
391392

392-
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.1-SNAPSHOT...HEAD
393+
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.0...HEAD
394+
[0.2.1.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.1.1-SNAPSHOT...v0.2.1.0
393395
[0.2.1.1-SNAPSHOT]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.2.0.0...v0.2.1.1-SNAPSHOT
394396
[0.2.0.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.33.0-SNAPSHOT...v0.2.0.0
395397
[0.1.33.0-SNAPSHOT]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.32.0...v0.1.33.0-SNAPSHOT

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.1.1-SNAPSHOT"}
30+
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.2.1.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 "7a30402b9bd843494752c46a18ff7f2fec27a620"}
34+
:git/sha "875da823caca2d0069e37013e4833d9395f00eff"}
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.1.1-SNAPSHOT")
10+
(def version "0.2.1.0")
1111
(def class-dir "target/classes")
1212

1313
(defn- try-sh

0 commit comments

Comments
 (0)