Skip to content

Commit 91241b3

Browse files
chore: release v0.1.30.1 (#46)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ea38e4c commit 91241b3

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.1.30.1] - 2026-03-07
67
### Added
78
- `disconnect!` function as the preferred API for closing sessions, matching upstream SDK's `disconnect()` (upstream PR #599). `destroy!` is deprecated but still works as an alias.
89
- 6 new broadcast event types from CLI protocol 0.0.421 (upstream PR #684): `:copilot/permission.requested`, `:copilot/permission.completed`, `:copilot/user_input.requested`, `:copilot/user_input.completed`, `:copilot/elicitation.requested`, `:copilot/elicitation.completed`
@@ -282,7 +283,8 @@ All notable changes to this project will be documented in this file. This change
282283
- org.clojure/spec.alpha 0.5.238
283284
- cheshire/cheshire 5.13.0
284285

285-
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.30.0...HEAD
286+
[Unreleased]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.30.1...HEAD
287+
[0.1.30.1]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.30.0...v0.1.30.1
286288
[0.1.30.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.29.0...v0.1.30.0
287289
[0.1.29.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.28.0...v0.1.29.0
288290
[0.1.28.0]: https://github.com/copilot-community-sdk/copilot-sdk-clojure/compare/v0.1.26.0-SNAPSHOT...v0.1.28.0

README.md

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

2727
```clojure
2828
;; From Maven Central
29-
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.1.30.0"}
29+
io.github.copilot-community-sdk/copilot-sdk-clojure {:mvn/version "0.1.30.1"}
3030

3131
;; Or git dependency
3232
io.github.copilot-community-sdk/copilot-sdk-clojure {:git/url "https://github.com/copilot-community-sdk/copilot-sdk-clojure.git"
33-
:git/sha "72d8ddc3c88337a91000e0c69a8b55ee8db01166"}
33+
:git/sha "ea38e4ce9b554ce55cce9b20738d0899bc0b8508"}
3434
```
3535

3636
> **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.1.30.0")
10+
(def version "0.1.30.1")
1111
(def class-dir "target/classes")
1212

1313
(defn- try-sh

0 commit comments

Comments
 (0)