diff --git a/.github/release-please/release-please-manifest.json b/.github/release-please/release-please-manifest.json
index d52d2b97..a26ebfc1 100644
--- a/.github/release-please/release-please-manifest.json
+++ b/.github/release-please/release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.13.0"
+ ".": "0.14.0"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d9402f7a..c7901d23 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [0.14.0](https://github.com/opentdf/java-sdk/compare/v0.13.0...v0.14.0) (2026-04-21)
+
+
+### Features
+
+* **sdk:** add ergonomic Resource constructors for authorization ([#354](https://github.com/opentdf/java-sdk/issues/354)) ([9e05ca2](https://github.com/opentdf/java-sdk/commit/9e05ca27517cd28dbf97caf721f9a22083ff680d))
+
+
+### Bug Fixes
+
+* **ci:** allow release branch scopes in PR title validation ([#349](https://github.com/opentdf/java-sdk/issues/349)) ([8020a3b](https://github.com/opentdf/java-sdk/commit/8020a3b243d36a6f866a6a81b0ca1898871d89e8))
+
## [0.13.0](https://github.com/opentdf/java-sdk/compare/v0.12.0...v0.13.0) (2026-04-09)
diff --git a/cmdline/pom.xml b/cmdline/pom.xml
index 39a3af9f..9d7c2d2c 100644
--- a/cmdline/pom.xml
+++ b/cmdline/pom.xml
@@ -4,7 +4,7 @@
io.opentdf.platform
sdk-pom
- 0.13.1-SNAPSHOT
+ 0.14.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 21f783db..0d693a94 100644
--- a/cmdline/src/main/java/io/opentdf/platform/Command.java
+++ b/cmdline/src/main/java/io/opentdf/platform/Command.java
@@ -53,7 +53,7 @@
*/
class Versions {
// Version of the SDK, managed by release-please.
- public static final String SDK = "0.13.1-SNAPSHOT"; // x-release-please-version
+ public static final String SDK = "0.14.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 ca64a817..6dbadc7f 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -4,7 +4,7 @@
sdk-pom
io.opentdf.platform
- 0.13.1-SNAPSHOT
+ 0.14.0
io.opentdf.platform
diff --git a/pom.xml b/pom.xml
index a048cc84..bd29f4ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
io.opentdf.platform
sdk-pom
- 0.13.1-SNAPSHOT
+ 0.14.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 2404b211..06125af1 100644
--- a/sdk/pom.xml
+++ b/sdk/pom.xml
@@ -6,7 +6,7 @@
sdk-pom
io.opentdf.platform
- 0.13.1-SNAPSHOT
+ 0.14.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 94781fb6..a0064599 100644
--- a/sdk/src/main/java/io/opentdf/platform/sdk/Version.java
+++ b/sdk/src/main/java/io/opentdf/platform/sdk/Version.java
@@ -13,7 +13,7 @@
class Version implements Comparable {
// Version of the SDK, managed by release-please.
- public static final String SDK = "0.13.1-SNAPSHOT"; // x-release-please-version
+ public static final String SDK = "0.14.0"; // x-release-please-version
private final int major;
private final int minor;