Skip to content

Commit 214a9a5

Browse files
release: 2.1.0
1 parent f85d1a2 commit 214a9a5

File tree

4 files changed

+29
-11
lines changed

4 files changed

+29
-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.0.0"
2+
".": "2.1.0"
33
}

CHANGELOG.md

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

3+
## 2.1.0 (2025-06-03)
4+
5+
Full Changelog: [v2.0.0...v2.1.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.0.0...v2.1.0)
6+
7+
### Features
8+
9+
* **client:** add support for new text_editor_20250429 tool ([f85d1a2](https://github.com/anthropics/anthropic-sdk-java/commit/f85d1a233b58b7c926dddb64131de7122716d169))
10+
11+
12+
### Bug Fixes
13+
14+
* **client:** remove `@MustBeClosed` for future returning methods ([b9b63ca](https://github.com/anthropics/anthropic-sdk-java/commit/b9b63ca942178bc390a1c8a95deea4817edb9b60))
15+
16+
17+
### Chores
18+
19+
* **internal:** fix release workflows ([a5287dc](https://github.com/anthropics/anthropic-sdk-java/commit/a5287dc4ffaad0e02fed166b63e4635448666247))
20+
321
## 2.0.0 (2025-05-22)
422

523
Full Changelog: [v1.4.0...v2.0.0](https://github.com/anthropics/anthropic-sdk-java/compare/v1.4.0...v2.0.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.0.0)
6-
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.0.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.0.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.1.0)
6+
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.1.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.1.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.0.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.1.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.0.0")
25+
implementation("com.anthropic:anthropic-java:2.1.0")
2626
```
2727

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

@@ -632,7 +632,7 @@ requires the `anthropic-java-bedrock` library dependency.
632632
### Gradle
633633

634634
```kotlin
635-
implementation("com.anthropic:anthropic-java-bedrock:2.0.0")
635+
implementation("com.anthropic:anthropic-java-bedrock:2.1.0")
636636
```
637637

638638
### Maven
@@ -641,7 +641,7 @@ implementation("com.anthropic:anthropic-java-bedrock:2.0.0")
641641
<dependency>
642642
<groupId>com.anthropic</groupId>
643643
<artifactId>anthropic-java-bedrock</artifactId>
644-
<version>2.0.0</version>
644+
<version>2.1.0</version>
645645
</dependency>
646646
```
647647

@@ -739,7 +739,7 @@ This support requires the `anthropic-java-vertex` library dependency.
739739
### Gradle
740740

741741
```kotlin
742-
implementation("com.anthropic:anthropic-java-vertex:2.0.0")
742+
implementation("com.anthropic:anthropic-java-vertex:2.1.0")
743743
```
744744

745745
### Maven
@@ -748,7 +748,7 @@ implementation("com.anthropic:anthropic-java-vertex:2.0.0")
748748
<dependency>
749749
<groupId>com.anthropic</groupId>
750750
<artifactId>anthropic-java-vertex</artifactId>
751-
<version>2.0.0</version>
751+
<version>2.1.0</version>
752752
</dependency>
753753
```
754754

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

1414
subprojects {

0 commit comments

Comments
 (0)