Skip to content

Commit 5cfbcf0

Browse files
committed
chore(release): prepare version 0.34.0
1 parent 2852921 commit 5cfbcf0

5 files changed

Lines changed: 16 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ the conventions of [keepachangelog.com](http://keepachangelog.com/).
55

66
## [Unreleased]
77

8+
## [0.34.0] - 2026-09-04
9+
10+
### Changed
11+
12+
- Bump `anthropic-java` and the Bedrock/Vertex artifacts to **2.61.0**.
13+
- Adapt compliance settings to the SDK's renamed request-side
14+
`BetaComplianceSettingsStateParam` and response-side
15+
`BetaComplianceSettingsState` classes. The wrapper public API is unchanged.
16+
817
## [0.33.0] - 2026-09-01
918

1019
### Changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jar. It does not assert parity.
3232
tools.deps (`deps.edn`):
3333

3434
```clojure
35-
net.clojars.savya/anthropic-clj {:mvn/version "0.33.0"}
35+
net.clojars.savya/anthropic-clj {:mvn/version "0.34.0"}
3636
```
3737

3838
Leiningen (`project.clj`):
3939

4040
```clojure
41-
[net.clojars.savya/anthropic-clj "0.33.0"]
41+
[net.clojars.savya/anthropic-clj "0.34.0"]
4242
```
4343

4444
Supported Clojure versions: 1.10, 1.11, and 1.12.
@@ -55,7 +55,7 @@ Set `ANTHROPIC_API_KEY` in your environment, or pass client options:
5555
- `:configure` - receives the raw SDK builder last, for anything not wrapped
5656
here (interceptors, a custom `jsonMapper`, or a Bedrock/Vertex `backend`)
5757

58-
Tracks [`com.anthropic/anthropic-java` 2.60.0](https://github.com/anthropics/anthropic-sdk-java/releases/tag/v2.60.0) - see `CHANGELOG.md` for the bump history.
58+
Tracks [`com.anthropic/anthropic-java` 2.61.0](https://github.com/anthropics/anthropic-sdk-java/releases/tag/v2.61.0) - see `CHANGELOG.md` for the bump history.
5959

6060
## Usage
6161

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[deps-deploy.deps-deploy :as dd]))
99

1010
(def lib 'net.clojars.savya/anthropic-clj)
11-
(def version "0.33.0")
11+
(def version "0.34.0")
1212
(def class-dir "target/classes")
1313
(def basis (delay (b/create-basis {:project "deps.edn"})))
1414
(def jar-file (format "target/%s-%s.jar" (name lib) version))

doc/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ an explicit integration suite.
1313
Leiningen:
1414

1515
```clojure
16-
[net.clojars.savya/anthropic-clj "0.33.0"]
16+
[net.clojars.savya/anthropic-clj "0.34.0"]
1717
```
1818

1919
tools.deps:
2020

2121
```clojure
22-
net.clojars.savya/anthropic-clj {:mvn/version "0.33.0"}
22+
net.clojars.savya/anthropic-clj {:mvn/version "0.34.0"}
2323
```
2424

2525
Version `0.11.1` pins `com.anthropic/anthropic-java` `2.48.0`.

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject net.clojars.savya/anthropic-clj "0.33.0"
1+
(defproject net.clojars.savya/anthropic-clj "0.34.0"
22
:plugins [[lein-tools-deps "0.4.5"]]
33
:middleware [lein-tools-deps.plugin/resolve-dependencies-with-deps-edn]
44
:lein-tools-deps/config {:config-files [:install :user :project]}

0 commit comments

Comments
 (0)