From d5572fa568ba434e866a79e228eb78edc2111d7d Mon Sep 17 00:00:00 2001 From: Eric Fichtel Date: Fri, 9 Sep 2022 16:58:07 -0700 Subject: [PATCH] release 2.3.1 --- CHANGELOG.md | 5 +++++ gradle.properties | 2 +- .../com/adobe/target/edge/client/utils/TargetConstants.java | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a95d32..26b20cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [2.3.1] - 2022-09-12 +### Fixed +- Client custom Mbox parameters now correctly support dot notation +- stickyLocationHint is updated regardless of Decisioning method + ## [2.3.0] - 2022-05-26 ### Added - Added ClientHints support diff --git a/gradle.properties b/gradle.properties index 729c5fb..89761b2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.adobe.target -version=2.3.0 +version=2.3.1 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 e33b4c0..f09a2ae 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.3.0"; + public static final String SDK_VERSION = "2.3.1"; }