Skip to content

Commit 4dd086e

Browse files
chore(main): release 0.16.0 (#376)
🤖 I have created a release *beep* *boop* --- <details><summary>0.16.0</summary> ## [0.16.0](v0.15.0...v0.16.0) (2026-06-22) ### ⚠ BREAKING CHANGES * **sdk:** remove bouncycastle and ayza libraries ([#367](#367)) ### Features * **sdk:** remove bouncycastle and ayza libraries ([#367](#367)) ([63b49af](63b49af)) * verify that BC works with `approved_only` mode set ([#375](#375)) ([36fd6cf](36fd6cf)) ### Bug Fixes * **main:** Update bc module sdk version. ([#377](#377)) ([9b38f82](9b38f82)) </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> Co-authored-by: Morgan Kleene <mkleene@virtru.com>
1 parent 62779ef commit 4dd086e

9 files changed

Lines changed: 28 additions & 12 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.15.0"
2+
".": "0.16.0"
33
}

CHANGELOG.md

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

3+
## [0.16.0](https://github.com/opentdf/java-sdk/compare/v0.15.0...v0.16.0) (2026-06-22)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **sdk:** remove bouncycastle and ayza libraries ([#367](https://github.com/opentdf/java-sdk/issues/367))
9+
10+
### Features
11+
12+
* **sdk:** remove bouncycastle and ayza libraries ([#367](https://github.com/opentdf/java-sdk/issues/367)) ([63b49af](https://github.com/opentdf/java-sdk/commit/63b49af858f5eb78ea3db72d2fe991abdb3fcec8))
13+
* verify that BC works with `approved_only` mode set ([#375](https://github.com/opentdf/java-sdk/issues/375)) ([36fd6cf](https://github.com/opentdf/java-sdk/commit/36fd6cf0f75f986f2d4e456f47ee83c55756d2f7))
14+
15+
16+
### Bug Fixes
17+
18+
* **main:** Update bc module sdk version. ([#377](https://github.com/opentdf/java-sdk/issues/377)) ([9b38f82](https://github.com/opentdf/java-sdk/commit/9b38f82a5bc61284f844e9527ca34a206648e646))
19+
320
## [0.15.0](https://github.com/opentdf/java-sdk/compare/v0.14.0...v0.15.0) (2026-04-29)
421

522

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.15.1-SNAPSHOT</version>
7+
<version>0.16.0</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
@@ -52,7 +52,7 @@
5252
*/
5353
class Versions {
5454
// Version of the SDK, managed by release-please.
55-
public static final String SDK = "0.15.1-SNAPSHOT"; // x-release-please-version
55+
public static final String SDK = "0.16.0"; // x-release-please-version
5656

5757
// This sdk aims to support this version of the TDF spec; currently 4.3.0.
5858
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.15.1-SNAPSHOT</version>
7+
<version>0.16.0</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.15.1-SNAPSHOT</version>
8+
<version>0.16.0</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-fips-bouncycastle/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>io.opentdf.platform</groupId>
76
<artifactId>sdk-pom</artifactId>
8-
<version>0.15.1-SNAPSHOT</version>
7+
<version>0.16.0</version>
98
</parent>
109
<artifactId>sdk-fips-bouncycastle</artifactId>
1110
<name>io.opentdf.platform:sdk-fips-bouncycastle</name>

sdk/pom.xml

Lines changed: 3 additions & 3 deletions
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.15.1-SNAPSHOT</version>
9+
<version>0.16.0</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<properties>
@@ -18,9 +18,9 @@
1818
<okhttp.version>4.12.0</okhttp.version>
1919
<platform.branch>protocol/go/v0.16.0</platform.branch>
2020
<!-- in the non-FIPS case we don't need to pass anything to the jvm -->
21-
<java.security.properties.test></java.security.properties.test>
21+
<java.security.properties.test/>
2222
<!-- Default empty argLine; overridden by jacoco:prepare-agent when the `coverage` profile is active -->
23-
<argLine></argLine>
23+
<argLine/>
2424
</properties>
2525
<dependencies>
2626
<!-- Logging Dependencies -->

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

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

1515
// Version of the SDK, managed by release-please.
16-
public static final String SDK = "0.15.1-SNAPSHOT"; // x-release-please-version
16+
public static final String SDK = "0.16.0"; // x-release-please-version
1717

1818
private final int major;
1919
private final int minor;

0 commit comments

Comments
 (0)