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 .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.1"
".": "0.7.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.2](https://github.com/deepgram/deepgram-java-sdk/compare/v0.7.1...v0.7.2) (2026-07-31)


### Features

* **Listen v2 streaming: turn control & redaction** — new `ForceEndTurn` client message (`sendForceEndTurn(...)` on the listen v2 WebSocket client) forces the model to finalize the current turn on demand, plus a `redact` connect option (`ListenV2Redact.NUMBERS` / `AGGRESSIVE_NUMBERS`) that removes sensitive information from live transcripts; `TurnInfo` also gains a `trigger` field indicating what ended the turn. Also adds **Listen v1 diarization metadata** (`diarizeInfo` on response metadata plus per-word `speaker` / `speakerConfidence`), the mid-session agent `UpdateListen` provider selection, and **12 new Flux (`flux-*-en`) text-to-speech voices**. ([#89](https://github.com/deepgram/deepgram-java-sdk/issues/89)) ([5b6323a](https://github.com/deepgram/deepgram-java-sdk/commit/5b6323ae23ead0e68c4823286c9a18a2a015b47c))

## [0.7.1](https://github.com/deepgram/deepgram-java-sdk/compare/v0.7.0...v0.7.1) (2026-07-24)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the dependency to your `build.gradle`:

```groovy
dependencies {
implementation 'com.deepgram:deepgram-java-sdk:0.7.1' // x-release-please-version
implementation 'com.deepgram:deepgram-java-sdk:0.7.2' // x-release-please-version
}
```

Expand All @@ -41,7 +41,7 @@ Add the dependency to your `pom.xml`:
<dependency>
<groupId>com.deepgram</groupId>
<artifactId>deepgram-java-sdk</artifactId>
<version>0.7.1</version> <!-- x-release-please-version -->
<version>0.7.2</version> <!-- x-release-please-version -->
</dependency>
```

Expand Down Expand Up @@ -410,7 +410,7 @@ Use the separate [`deepgram-sagemaker`](https://github.com/deepgram/deepgram-jav

```groovy
dependencies {
implementation 'com.deepgram:deepgram-java-sdk:0.7.1' // x-release-please-version
implementation 'com.deepgram:deepgram-java-sdk:0.7.2' // x-release-please-version
implementation 'com.deepgram:deepgram-sagemaker:0.1.2'
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publishing {
}

group = 'com.deepgram'
version = '0.7.1' // x-release-please-version
version = '0.7.2' // x-release-please-version

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.deepgram</groupId>
<artifactId>deepgram-java-sdk</artifactId>
<version>0.7.1</version> <!-- x-release-please-version -->
<version>0.7.2</version> <!-- x-release-please-version -->
<packaging>jar</packaging>

<name>Deepgram Java SDK</name>
Expand Down
Loading