diff --git a/CHANGELOG.md b/CHANGELOG.md index d90a4c22..4a95d326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.3.0] - 2022-05-26 +### Added +- Added ClientHints support + ## [2.2.2] - 2022-03-30 ### Fixed - Updated ECID-service dependency to fix parsing expiry values from AMCV cookie diff --git a/gradle.properties b/gradle.properties index fa2fea71..729c5fb4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.adobe.target -version=2.2.2 +version=2.3.0 mavenCentralUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2 pomDescription=Adobe Target Java SDK pomURL=https://docs.adobe.com/content/help/en/target/using/implement-target/server-side/api-and-sdk-overview.html diff --git a/src/main/java/com/adobe/target/edge/client/utils/TargetConstants.java b/src/main/java/com/adobe/target/edge/client/utils/TargetConstants.java index cf10eeca..e33b4c05 100644 --- a/src/main/java/com/adobe/target/edge/client/utils/TargetConstants.java +++ b/src/main/java/com/adobe/target/edge/client/utils/TargetConstants.java @@ -15,5 +15,5 @@ public class TargetConstants { public static final String COOKIE_NAME = "mbox"; public static final String CLUSTER_COOKIE_NAME = "mboxEdgeCluster"; - public static final String SDK_VERSION = "2.2.2"; + public static final String SDK_VERSION = "2.3.0"; }