Skip to content

Commit

Permalink
release: 0.1.0-alpha.12
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Jan 30, 2025
1 parent 052894b commit 24c979a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.11"
".": "0.1.0-alpha.12"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.1.0-alpha.12 (2025-01-30)

Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/anthropics/anthropic-sdk-java/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)

### Features

* **client:** helpers for discriminated union variants with one required prop ([#98](https://github.com/anthropics/anthropic-sdk-java/issues/98)) ([03c6ff6](https://github.com/anthropics/anthropic-sdk-java/commit/03c6ff6ea48d331cabf5633b6bce664f3d3b04dc))


### Bug Fixes

* **client:** don't leak responses when retrying ([#103](https://github.com/anthropics/anthropic-sdk-java/issues/103)) ([052894b](https://github.com/anthropics/anthropic-sdk-java/commit/052894b2a757a4436194266fe41677239b6fa17a))


### Chores

* **internal:** simplify object construction ([#99](https://github.com/anthropics/anthropic-sdk-java/issues/99)) ([df51ab4](https://github.com/anthropics/anthropic-sdk-java/commit/df51ab48521b81e544fe4c5abe2d059852335110))

## 0.1.0-alpha.11 (2025-01-29)

Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/anthropics/anthropic-sdk-java/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/0.1.0-alpha.11)
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/0.1.0-alpha.11/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/0.1.0-alpha.11)
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/0.1.0-alpha.12)
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/0.1.0-alpha.12/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/0.1.0-alpha.12)

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

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

```kotlin
implementation("com.anthropic:anthropic-java:0.1.0-alpha.11")
implementation("com.anthropic:anthropic-java:0.1.0-alpha.12")
```

### Maven
Expand All @@ -34,7 +34,7 @@ implementation("com.anthropic:anthropic-java:0.1.0-alpha.11")
<dependency>
<groupId>com.anthropic</groupId>
<artifactId>anthropic-java</artifactId>
<version>0.1.0-alpha.11</version>
<version>0.1.0-alpha.12</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.anthropic"
version = "0.1.0-alpha.11" // x-release-please-version
version = "0.1.0-alpha.12" // x-release-please-version
}

subprojects {
Expand Down

0 comments on commit 24c979a

Please sign in to comment.