Skip to content

Commit b7235cd

Browse files
chore(main): release 0.11.1 (#318)
🤖 I have created a release *beep* *boop* --- <details><summary>0.11.1</summary> ## [0.11.1](v0.11.0...v0.11.1) (2025-12-08) ### Bug Fixes * **examples:** improve logging and setup logic in examples ([#316](#316)) ([2e5660c](2e5660c)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: opentdf-automation[bot] <149537512+opentdf-automation[bot]@users.noreply.github.com>
1 parent 2854272 commit b7235cd

File tree

8 files changed

+14
-7
lines changed

8 files changed

+14
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.11.0"
2+
".": "0.11.1"
33
}

CHANGELOG.md

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

3+
## [0.11.1](https://github.com/opentdf/java-sdk/compare/v0.11.0...v0.11.1) (2025-12-08)
4+
5+
6+
### Bug Fixes
7+
8+
* **examples:** improve logging and setup logic in examples ([#316](https://github.com/opentdf/java-sdk/issues/316)) ([2e5660c](https://github.com/opentdf/java-sdk/commit/2e5660c50b7c5fd80ad4137c1f17a1e1f4470588))
9+
310
## [0.11.0](https://github.com/opentdf/java-sdk/compare/v0.10.0...v0.11.0) (2025-11-20)
411

512

cmdline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.opentdf.platform</groupId>
66
<artifactId>sdk-pom</artifactId>
7-
<version>0.11.1-SNAPSHOT</version>
7+
<version>0.11.1</version>
88
</parent>
99
<artifactId>cmdline</artifactId>
1010
<properties>

cmdline/src/main/java/io/opentdf/platform/Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*/
5050
class Versions {
5151
// Version of the SDK, managed by release-please.
52-
public static final String SDK = "0.11.1-SNAPSHOT"; // x-release-please-version
52+
public static final String SDK = "0.11.1"; // x-release-please-version
5353

5454
// This sdk aims to support this version of the TDF spec; currently 4.3.0.
5555
public static final String TDF_SPEC = "4.3.0";

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>sdk-pom</artifactId>
66
<groupId>io.opentdf.platform</groupId>
7-
<version>0.11.1-SNAPSHOT</version>
7+
<version>0.11.1</version>
88
</parent>
99

1010
<groupId>io.opentdf.platform</groupId>

pom.xml

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

66
<groupId>io.opentdf.platform</groupId>
77
<artifactId>sdk-pom</artifactId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
<name>io.opentdf.platform:sdk-pom</name>
1010
<description>OpenTDF Java SDK</description>
1111
<url>https://github.com/opentdf/java-sdk</url>

sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>sdk-pom</artifactId>
88
<groupId>io.opentdf.platform</groupId>
9-
<version>0.11.1-SNAPSHOT</version>
9+
<version>0.11.1</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<properties>

sdk/src/main/java/io/opentdf/platform/sdk/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class Version implements Comparable<Version> {
1313

1414
// Version of the SDK, managed by release-please.
15-
public static final String SDK = "0.11.1-SNAPSHOT"; // x-release-please-version
15+
public static final String SDK = "0.11.1"; // x-release-please-version
1616

1717
private final int major;
1818
private final int minor;

0 commit comments

Comments
 (0)