diff --git a/.github/release-please/release-please-manifest.json b/.github/release-please/release-please-manifest.json index 091cfb12..f7014c35 100644 --- a/.github/release-please/release-please-manifest.json +++ b/.github/release-please/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 92462ce7..2b71ab37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.11.0](https://github.com/opentdf/java-sdk/compare/v0.10.0...v0.11.0) (2025-10-29) + + +### Features + +* **ci:** DSPX-1716 Updating permission for bundled tests ([#306](https://github.com/opentdf/java-sdk/issues/306)) ([87ff3e6](https://github.com/opentdf/java-sdk/commit/87ff3e6f24e7cfedbb5aab7f6d0d0bfb1a798888)) + + +### Bug Fixes + +* **ci:** Fix the workflow that updates the proto version ([#301](https://github.com/opentdf/java-sdk/issues/301)) ([9bd9ce5](https://github.com/opentdf/java-sdk/commit/9bd9ce5eeaf3c4fe0f683d16bb65974c09fe1068)) +* parse hostnames with no ports correctly ([#292](https://github.com/opentdf/java-sdk/issues/292)) ([3da5f51](https://github.com/opentdf/java-sdk/commit/3da5f511a950da4f468f63f62fe52617410fca48)) +* **sdk:** remove reserved and unused proto field ([#299](https://github.com/opentdf/java-sdk/issues/299)) ([50b0302](https://github.com/opentdf/java-sdk/commit/50b0302a8d85b45cc81f465292636330a512c74b)) +* we can't parse things like `192.168.1.1:4000` ([#294](https://github.com/opentdf/java-sdk/issues/294)) ([dc3142d](https://github.com/opentdf/java-sdk/commit/dc3142da71198e16688912152ac5ce866faec060)) + ## [0.10.0](https://github.com/opentdf/java-sdk/compare/v0.9.0...v0.10.0) (2025-09-02) diff --git a/cmdline/pom.xml b/cmdline/pom.xml index 4ef1f3a0..a0c32dd8 100644 --- a/cmdline/pom.xml +++ b/cmdline/pom.xml @@ -4,7 +4,7 @@ io.opentdf.platform sdk-pom - 0.10.1-SNAPSHOT + 0.11.0 cmdline diff --git a/cmdline/src/main/java/io/opentdf/platform/Command.java b/cmdline/src/main/java/io/opentdf/platform/Command.java index cce6f6be..cca8c8d6 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.10.1-SNAPSHOT"; // x-release-please-version + public static final String SDK = "0.11.0"; // 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 3bcd1e02..5b3229ff 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -4,7 +4,7 @@ sdk-pom io.opentdf.platform - 0.10.1-SNAPSHOT + 0.11.0 io.opentdf.platform diff --git a/pom.xml b/pom.xml index b6860291..7a31fb21 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.opentdf.platform sdk-pom - 0.10.1-SNAPSHOT + 0.11.0 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 1ced4176..3ba1034a 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -6,7 +6,7 @@ sdk-pom io.opentdf.platform - 0.10.1-SNAPSHOT + 0.11.0 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 0d881bb8..5b32c1b2 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.10.1-SNAPSHOT"; // x-release-please-version + public static final String SDK = "0.11.0"; // x-release-please-version private final int major; private final int minor;