diff --git a/.github/release-please/release-please-manifest.json b/.github/release-please/release-please-manifest.json index f7014c35..e82003f4 100644 --- a/.github/release-please/release-please-manifest.json +++ b/.github/release-please/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.11.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d952c29..b6b849c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.11.1](https://github.com/opentdf/java-sdk/compare/v0.11.0...v0.11.1) (2025-12-08) + + +### Bug Fixes + +* **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)) + ## [0.11.0](https://github.com/opentdf/java-sdk/compare/v0.10.0...v0.11.0) (2025-11-20) diff --git a/cmdline/pom.xml b/cmdline/pom.xml index b0f4e61b..bf96a03d 100644 --- a/cmdline/pom.xml +++ b/cmdline/pom.xml @@ -4,7 +4,7 @@ io.opentdf.platform sdk-pom - 0.11.1-SNAPSHOT + 0.11.1 cmdline diff --git a/cmdline/src/main/java/io/opentdf/platform/Command.java b/cmdline/src/main/java/io/opentdf/platform/Command.java index 15d95326..36b37781 100644 --- a/cmdline/src/main/java/io/opentdf/platform/Command.java +++ b/cmdline/src/main/java/io/opentdf/platform/Command.java @@ -49,7 +49,7 @@ */ class Versions { // Version of the SDK, managed by release-please. - public static final String SDK = "0.11.1-SNAPSHOT"; // x-release-please-version + public static final String SDK = "0.11.1"; // x-release-please-version // This sdk aims to support this version of the TDF spec; currently 4.3.0. public static final String TDF_SPEC = "4.3.0"; diff --git a/examples/pom.xml b/examples/pom.xml index 177a741b..c7b0cc73 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -4,7 +4,7 @@ sdk-pom io.opentdf.platform - 0.11.1-SNAPSHOT + 0.11.1 io.opentdf.platform diff --git a/pom.xml b/pom.xml index 535290b3..c7308b44 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.opentdf.platform sdk-pom - 0.11.1-SNAPSHOT + 0.11.1 io.opentdf.platform:sdk-pom OpenTDF Java SDK https://github.com/opentdf/java-sdk diff --git a/sdk/pom.xml b/sdk/pom.xml index d9c26407..29a933c3 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ sdk-pom io.opentdf.platform - 0.11.1-SNAPSHOT + 0.11.1 jar diff --git a/sdk/src/main/java/io/opentdf/platform/sdk/Version.java b/sdk/src/main/java/io/opentdf/platform/sdk/Version.java index 9b5da242..9a383a1f 100644 --- a/sdk/src/main/java/io/opentdf/platform/sdk/Version.java +++ b/sdk/src/main/java/io/opentdf/platform/sdk/Version.java @@ -12,7 +12,7 @@ class Version implements Comparable { // Version of the SDK, managed by release-please. - public static final String SDK = "0.11.1-SNAPSHOT"; // x-release-please-version + public static final String SDK = "0.11.1"; // x-release-please-version private final int major; private final int minor;