Skip to content

Commit fff182f

Browse files
release: 2.12.0
1 parent b2315f9 commit fff182f

4 files changed

Lines changed: 31 additions & 11 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.11.1"
2+
".": "2.12.0"
33
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## 2.12.0 (2025-12-02)
4+
5+
Full Changelog: [v2.11.1...v2.12.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.11.1...v2.12.0)
6+
7+
### Features
8+
9+
* **api:** adds support for Claude Opus 4.5, Effort, Advance Tool Use Features, Autocompaction, and Computer Use v5 ([4689271](https://github.com/anthropics/anthropic-sdk-java/commit/4689271c4dba2de056356d314429af36b7ad7205))
10+
11+
12+
### Bug Fixes
13+
14+
* **client:** cancel okhttp call when future cancelled ([b52f783](https://github.com/anthropics/anthropic-sdk-java/commit/b52f7831db730af1e398df4362b84002f82d025e))
15+
* **client:** implement visitToolSearchToolResult for Beta Accumulator ([41191ed](https://github.com/anthropics/anthropic-sdk-java/commit/41191edae162caaf9572c5d1d786160413bdc39c))
16+
* **client:** run linter ([73e141d](https://github.com/anthropics/anthropic-sdk-java/commit/73e141d1df0cd094f6544b2bd51d5fccf989f28a))
17+
18+
19+
### Documentation
20+
21+
* remove `$` for better copy-pasteabality ([b2315f9](https://github.com/anthropics/anthropic-sdk-java/commit/b2315f9d756ad473cd52c4daf52590341e9d3bce))
22+
323
## 2.11.1 (2025-11-19)
424

525
Full Changelog: [v2.11.0...v2.11.1](https://github.com/anthropics/anthropic-sdk-java/compare/v2.11.0...v2.11.1)

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/2.11.1)
6-
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.11.1/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.11.1)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/2.12.0)
6+
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.12.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.12.0)
77

88
<!-- x-release-please-end -->
99

1010
The Anthropic Java SDK provides convenient access to the [Anthropic REST API](https://docs.anthropic.com/claude/reference/) from applications written in Java.
1111

1212
<!-- x-release-please-start-version -->
1313

14-
The REST API documentation can be found on [docs.anthropic.com](https://docs.anthropic.com/claude/reference/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.anthropic/anthropic-java/2.11.1).
14+
The REST API documentation can be found on [docs.anthropic.com](https://docs.anthropic.com/claude/reference/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.anthropic/anthropic-java/2.12.0).
1515

1616
<!-- x-release-please-end -->
1717

@@ -22,7 +22,7 @@ The REST API documentation can be found on [docs.anthropic.com](https://docs.ant
2222
### Gradle
2323

2424
```kotlin
25-
implementation("com.anthropic:anthropic-java:2.11.1")
25+
implementation("com.anthropic:anthropic-java:2.12.0")
2626
```
2727

2828
### Maven
@@ -31,7 +31,7 @@ implementation("com.anthropic:anthropic-java:2.11.1")
3131
<dependency>
3232
<groupId>com.anthropic</groupId>
3333
<artifactId>anthropic-java</artifactId>
34-
<version>2.11.1</version>
34+
<version>2.12.0</version>
3535
</dependency>
3636
```
3737

@@ -1146,7 +1146,7 @@ requires the `anthropic-java-bedrock` library dependency.
11461146
### Gradle
11471147

11481148
```kotlin
1149-
implementation("com.anthropic:anthropic-java-bedrock:2.11.1")
1149+
implementation("com.anthropic:anthropic-java-bedrock:2.12.0")
11501150
```
11511151

11521152
### Maven
@@ -1155,7 +1155,7 @@ implementation("com.anthropic:anthropic-java-bedrock:2.11.1")
11551155
<dependency>
11561156
<groupId>com.anthropic</groupId>
11571157
<artifactId>anthropic-java-bedrock</artifactId>
1158-
<version>2.11.1</version>
1158+
<version>2.12.0</version>
11591159
</dependency>
11601160
```
11611161

@@ -1279,7 +1279,7 @@ This support requires the `anthropic-java-vertex` library dependency.
12791279
### Gradle
12801280

12811281
```kotlin
1282-
implementation("com.anthropic:anthropic-java-vertex:2.11.1")
1282+
implementation("com.anthropic:anthropic-java-vertex:2.12.0")
12831283
```
12841284

12851285
### Maven
@@ -1288,7 +1288,7 @@ implementation("com.anthropic:anthropic-java-vertex:2.11.1")
12881288
<dependency>
12891289
<groupId>com.anthropic</groupId>
12901290
<artifactId>anthropic-java-vertex</artifactId>
1291-
<version>2.11.1</version>
1291+
<version>2.12.0</version>
12921292
</dependency>
12931293
```
12941294

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.anthropic"
11-
version = "2.11.1" // x-release-please-version
11+
version = "2.12.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)