Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.4.0"
".": "2.4.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 14
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/turbopuffer-benesch/turbopuffer-0841bbcabedf7be7aa04e2a1fe9092987f51c5cb0d9ad4202eeb1ba4eef1f2b0.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/turbopuffer-benesch/turbopuffer-949092f69521d36010ea13571dc7ed1015a95e90897a971a398e1a5c968a8163.yml
openapi_spec_hash: bd6fdabde2b66bca3b7a3427ca943d9d
config_hash: bab72dc9f937352c7a01a37dadd44122
config_hash: cf1d73eb027654e6e18f24ca8b37f2af
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.4.1 (2026-06-12)

Full Changelog: [v2.4.0...v2.4.1](https://github.com/turbopuffer/turbopuffer-java/compare/v2.4.0...v2.4.1)

### Documentation

* rename /docs/overview to /docs/api-overview ([43263a8](https://github.com/turbopuffer/turbopuffer-java/commit/43263a8d1c0c97e03f1fe1fb872c2da818f3ae66))

## 2.4.0 (2026-06-09)

Full Changelog: [v2.3.0...v2.4.0](https://github.com/turbopuffer/turbopuffer-java/compare/v2.3.0...v2.4.0)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

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

[![Maven Central](https://img.shields.io/maven-central/v/com.turbopuffer/turbopuffer-java)](https://central.sonatype.com/artifact/com.turbopuffer/turbopuffer-java/2.4.0)
[![javadoc](https://javadoc.io/badge2/com.turbopuffer/turbopuffer-java/2.4.0/javadoc.svg)](https://javadoc.io/doc/com.turbopuffer/turbopuffer-java/2.4.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.turbopuffer/turbopuffer-java)](https://central.sonatype.com/artifact/com.turbopuffer/turbopuffer-java/2.4.1)
[![javadoc](https://javadoc.io/badge2/com.turbopuffer/turbopuffer-java/2.4.1/javadoc.svg)](https://javadoc.io/doc/com.turbopuffer/turbopuffer-java/2.4.1)

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

The turbopuffer Java SDK provides convenient access to the [turbopuffer HTTP API](https://turbopuffer.com/docs/overview) from applications written in Java.
The turbopuffer Java SDK provides convenient access to the [turbopuffer HTTP API](https://turbopuffer.com/docs/api-overview) from applications written in Java.

It is generated with [Stainless](https://www.stainless.com/).

Expand All @@ -22,7 +22,7 @@ Use the turbopuffer MCP Server to enable AI assistants to interact with this API

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

The REST API documentation can be found at [turbopuffer.com/docs/overview](https://turbopuffer.com/docs/overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.turbopuffer/turbopuffer-java/2.4.0).
The REST API documentation can be found at [turbopuffer.com/docs/api-overview](https://turbopuffer.com/docs/api-overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.turbopuffer/turbopuffer-java/2.4.1).

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

Expand All @@ -33,7 +33,7 @@ The REST API documentation can be found at [turbopuffer.com/docs/overview](https
### Gradle

```kotlin
implementation("com.turbopuffer:turbopuffer-java:2.4.0")
implementation("com.turbopuffer:turbopuffer-java:2.4.1")
```

### Maven
Expand All @@ -42,7 +42,7 @@ implementation("com.turbopuffer:turbopuffer-java:2.4.0")
<dependency>
<groupId>com.turbopuffer</groupId>
<artifactId>turbopuffer-java</artifactId>
<version>2.4.0</version>
<version>2.4.1</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.turbopuffer"
version = "2.4.0" // x-release-please-version
version = "2.4.1" // x-release-please-version
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/turbopuffer.publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ configure<MavenPublishBaseExtension> {
pom {
name.set("turbopuffer API")
description.set("turbopuffer is a fast search engine that combines vector and full-text search\nusing object storage.")
url.set("https://turbopuffer.com/docs/overview")
url.set("https://turbopuffer.com/docs/api-overview")

licenses {
license {
Expand Down
Loading