Skip to content

Commit 2baa6fa

Browse files
chore(main): release 0.2.0 (#18)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8bff3b9 commit 2baa6fa

6 files changed

Lines changed: 25 additions & 6 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"enable-wire-tests": true
1313
},
1414
"originGitCommit": "e994b5ab79ae6fe3560daff055acdf80d315b48e",
15-
"sdkVersion": "0.1.1"
15+
"sdkVersion": "0.2.0"
1616
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

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

3+
## [0.2.0](https://github.com/deepgram/deepgram-java-sdk/compare/v0.1.0...v0.2.0) (2026-03-30)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* fern regeneration with exception rename and forward-compatible enums ([#20](https://github.com/deepgram/deepgram-java-sdk/issues/20))
9+
* fern regeneration with com.deepgram package prefix ([#17](https://github.com/deepgram/deepgram-java-sdk/issues/17))
10+
11+
### Features
12+
13+
* fern regeneration with com.deepgram package prefix ([#17](https://github.com/deepgram/deepgram-java-sdk/issues/17)) ([a665131](https://github.com/deepgram/deepgram-java-sdk/commit/a66513101681105d4b87fe7c5a405b874c1d3fdd))
14+
* fern regeneration with exception rename and forward-compatible enums ([#20](https://github.com/deepgram/deepgram-java-sdk/issues/20)) ([8d65065](https://github.com/deepgram/deepgram-java-sdk/commit/8d65065243aab845f9de02e66428613b70bea2d8))
15+
16+
17+
### Bug Fixes
18+
19+
* add release-please version annotations and fix ClientOptions SDK name ([#21](https://github.com/deepgram/deepgram-java-sdk/issues/21)) ([0f56e52](https://github.com/deepgram/deepgram-java-sdk/commit/0f56e52300b2c79f68c9ac045f1f04eb104cbe19))
20+
* switch pom.xml to generic updater for release-please compatibility ([#22](https://github.com/deepgram/deepgram-java-sdk/issues/22)) ([8bff3b9](https://github.com/deepgram/deepgram-java-sdk/commit/8bff3b917c8f8fbcc74d4f2b9b588a2c73ac9e89))
21+
322
## 0.1.0 (2026-03-27)
423

524

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publishing {
1313
}
1414

1515
group = 'com.deepgram'
16-
version = '0.1.0' // x-release-please-version
16+
version = '0.2.0' // x-release-please-version
1717

1818
java {
1919
sourceCompatibility = JavaVersion.VERSION_11

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.deepgram</groupId>
88
<artifactId>deepgram-java-sdk</artifactId>
9-
<version>0.1.0</version> <!-- x-release-please-version -->
9+
<version>0.2.0</version> <!-- x-release-please-version -->
1010
<packaging>jar</packaging>
1111

1212
<name>Deepgram Java SDK</name>

src/main/java/com/deepgram/core/ClientOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ private ClientOptions(
4141
this.headers.putAll(headers);
4242
this.headers.putAll(new HashMap<String, String>() {
4343
{
44-
put("User-Agent", "com.deepgram:deepgram-java-sdk/0.1.0"); // x-release-please-version
44+
put("User-Agent", "com.deepgram:deepgram-java-sdk/0.2.0"); // x-release-please-version
4545
put("X-Fern-Language", "JAVA");
4646
put("X-Fern-SDK-Name", "com.deepgram:deepgram-java-sdk");
47-
put("X-Fern-SDK-Version", "0.1.0"); // x-release-please-version
47+
put("X-Fern-SDK-Version", "0.2.0"); // x-release-please-version
4848
}
4949
});
5050
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)