Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmdline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.opentdf.platform</groupId>
<artifactId>sdk-pom</artifactId>
<version>0.10.0</version>
<version>0.10.1-SNAPSHOT</version>
</parent>
<artifactId>cmdline</artifactId>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion cmdline/src/main/java/io/opentdf/platform/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*/
class Versions {
// Version of the SDK, managed by release-please.
public static final String SDK = "0.10.0"; // x-release-please-version
public static final String SDK = "0.10.1-SNAPSHOT"; // 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";
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>sdk-pom</artifactId>
<groupId>io.opentdf.platform</groupId>
<version>0.10.0</version>
<version>0.10.1-SNAPSHOT</version>
</parent>

<groupId>io.opentdf.platform</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.opentdf.platform</groupId>
<artifactId>sdk-pom</artifactId>
<version>0.10.0</version>
<version>0.10.1-SNAPSHOT</version>
<name>io.opentdf.platform:sdk-pom</name>
<description>OpenTDF Java SDK</description>
<url>https://github.com/opentdf/java-sdk</url>
Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>sdk-pom</artifactId>
<groupId>io.opentdf.platform</groupId>
<version>0.10.0</version>
<version>0.10.1-SNAPSHOT</version>
</parent>
<packaging>jar</packaging>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/io/opentdf/platform/sdk/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class Version implements Comparable<Version> {

// Version of the SDK, managed by release-please.
public static final String SDK = "0.10.0"; // x-release-please-version
public static final String SDK = "0.10.1-SNAPSHOT"; // x-release-please-version

private final int major;
private final int minor;
Expand Down
Loading