Skip to content

Commit 5078e6c

Browse files
release: 2.16.0
1 parent dd1242c commit 5078e6c

File tree

4 files changed

+27
-13
lines changed

4 files changed

+27
-13
lines changed

.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.15.0"
2+
".": "2.16.0"
33
}

CHANGELOG.md

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

3+
## 2.16.0 (2026-02-21)
4+
5+
Full Changelog: [v2.15.0...v2.16.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.15.0...v2.16.0)
6+
7+
### Features
8+
9+
* **api:** change array_format to brackets ([f9eef6e](https://github.com/anthropics/anthropic-sdk-java/commit/f9eef6ecfdfc0e4ab88a089814412ff0cbf2b04c))
10+
* **api:** remove publishing section from cli target ([f802cb0](https://github.com/anthropics/anthropic-sdk-java/commit/f802cb0b4cffaaf618c51c630b61275c888d742f))
11+
12+
13+
### Documentation
14+
15+
* additional structured outputs documentation ([#302](https://github.com/anthropics/anthropic-sdk-java/issues/302)) ([3b1f131](https://github.com/anthropics/anthropic-sdk-java/commit/3b1f131312954856ecdaa66f06741e1e5f86d81d))
16+
317
## 2.15.0 (2026-02-19)
418

519
Full Changelog: [v2.14.0...v2.15.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.14.0...v2.15.0)

README.md

Lines changed: 11 additions & 11 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.15.0)
6-
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.15.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.15.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/2.16.0)
6+
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.16.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.16.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.15.0).
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.16.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.15.0")
25+
implementation("com.anthropic:anthropic-java:2.16.0")
2626
```
2727

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

@@ -1268,7 +1268,7 @@ requires the `anthropic-java-bedrock` library dependency.
12681268
### Gradle
12691269

12701270
```kotlin
1271-
implementation("com.anthropic:anthropic-java-bedrock:2.15.0")
1271+
implementation("com.anthropic:anthropic-java-bedrock:2.16.0")
12721272
```
12731273

12741274
### Maven
@@ -1277,7 +1277,7 @@ implementation("com.anthropic:anthropic-java-bedrock:2.15.0")
12771277
<dependency>
12781278
<groupId>com.anthropic</groupId>
12791279
<artifactId>anthropic-java-bedrock</artifactId>
1280-
<version>2.15.0</version>
1280+
<version>2.16.0</version>
12811281
</dependency>
12821282
```
12831283

@@ -1401,7 +1401,7 @@ This support requires the `anthropic-java-vertex` library dependency.
14011401
### Gradle
14021402

14031403
```kotlin
1404-
implementation("com.anthropic:anthropic-java-vertex:2.15.0")
1404+
implementation("com.anthropic:anthropic-java-vertex:2.16.0")
14051405
```
14061406

14071407
### Maven
@@ -1410,7 +1410,7 @@ implementation("com.anthropic:anthropic-java-vertex:2.15.0")
14101410
<dependency>
14111411
<groupId>com.anthropic</groupId>
14121412
<artifactId>anthropic-java-vertex</artifactId>
1413-
<version>2.15.0</version>
1413+
<version>2.16.0</version>
14141414
</dependency>
14151415
```
14161416

@@ -1487,7 +1487,7 @@ requires the `anthropic-java-foundry` library dependency.
14871487
### Gradle
14881488

14891489
```kotlin
1490-
implementation("com.anthropic:anthropic-java-foundry:2.15.0")
1490+
implementation("com.anthropic:anthropic-java-foundry:2.16.0")
14911491
```
14921492

14931493
### Maven
@@ -1496,7 +1496,7 @@ implementation("com.anthropic:anthropic-java-foundry:2.15.0")
14961496
<dependency>
14971497
<groupId>com.anthropic</groupId>
14981498
<artifactId>anthropic-java-foundry</artifactId>
1499-
<version>2.15.0</version>
1499+
<version>2.16.0</version>
15001500
</dependency>
15011501
```
15021502

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.15.0" // x-release-please-version
11+
version = "2.16.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)