Skip to content

Commit ce979dd

Browse files
release: 2.5.1
1 parent f52ba92 commit ce979dd

File tree

4 files changed

+20
-11
lines changed

4 files changed

+20
-11
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.5.0"
2+
".": "2.5.1"
33
}

CHANGELOG.md

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

3+
## 2.5.1 (2025-08-13)
4+
5+
Full Changelog: [v2.5.0...v2.5.1](https://github.com/anthropics/anthropic-sdk-java/compare/v2.5.0...v2.5.1)
6+
7+
### Chores
8+
9+
* deprecate older claude-3-5 sonnet models ([#591](https://github.com/anthropics/anthropic-sdk-java/issues/591)) ([c7c4cc1](https://github.com/anthropics/anthropic-sdk-java/commit/c7c4cc1a0862f3121f9e1eb7703407efe9198b0c))
10+
* **internal:** format identity methods ([483576a](https://github.com/anthropics/anthropic-sdk-java/commit/483576abc49b0932bade9ad667747d1eedbea8a4))
11+
312
## 2.5.0 (2025-08-12)
413

514
Full Changelog: [v2.4.0...v2.5.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.4.0...v2.5.0)

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.5.0)
6-
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.5.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.5.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.5.1)
6+
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.5.1/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.5.1)
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.5.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.5.1).
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.5.0")
25+
implementation("com.anthropic:anthropic-java:2.5.1")
2626
```
2727

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

@@ -657,7 +657,7 @@ requires the `anthropic-java-bedrock` library dependency.
657657
### Gradle
658658

659659
```kotlin
660-
implementation("com.anthropic:anthropic-java-bedrock:2.5.0")
660+
implementation("com.anthropic:anthropic-java-bedrock:2.5.1")
661661
```
662662

663663
### Maven
@@ -666,7 +666,7 @@ implementation("com.anthropic:anthropic-java-bedrock:2.5.0")
666666
<dependency>
667667
<groupId>com.anthropic</groupId>
668668
<artifactId>anthropic-java-bedrock</artifactId>
669-
<version>2.5.0</version>
669+
<version>2.5.1</version>
670670
</dependency>
671671
```
672672

@@ -764,7 +764,7 @@ This support requires the `anthropic-java-vertex` library dependency.
764764
### Gradle
765765

766766
```kotlin
767-
implementation("com.anthropic:anthropic-java-vertex:2.5.0")
767+
implementation("com.anthropic:anthropic-java-vertex:2.5.1")
768768
```
769769

770770
### Maven
@@ -773,7 +773,7 @@ implementation("com.anthropic:anthropic-java-vertex:2.5.0")
773773
<dependency>
774774
<groupId>com.anthropic</groupId>
775775
<artifactId>anthropic-java-vertex</artifactId>
776-
<version>2.5.0</version>
776+
<version>2.5.1</version>
777777
</dependency>
778778
```
779779

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

1414
subprojects {

0 commit comments

Comments
 (0)