diff --git a/README.md b/README.md index 7e43c2b..06197cf 100755 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ ldd --version You can use the SDK in your Gradle project by adding the following to *build.gradle*: ```yaml -implementation("com.devcycle:java-server-sdk:2.3.0") +implementation("com.devcycle:java-server-sdk:2.2.1") ``` ### Maven @@ -43,7 +43,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x com.devcycle java-server-sdk - 2.3.0 + 2.2.1 compile ``` diff --git a/benchmark/pom.xml b/benchmark/pom.xml index 3ec10fd..a6a0d09 100644 --- a/benchmark/pom.xml +++ b/benchmark/pom.xml @@ -33,7 +33,7 @@ UTF-8 1.36 11 - 2.3.0 + 2.2.1 java-server-sdk-benchmarks diff --git a/build.gradle b/build.gradle index 6b09223..dec48d3 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ java { group = "com.devcycle" archivesBaseName = "java-server-sdk" -version = "2.3.0" +version = "2.2.1" publishing { publications { diff --git a/src/main/java/com/devcycle/sdk/server/common/model/PlatformData.java b/src/main/java/com/devcycle/sdk/server/common/model/PlatformData.java index e30f7d2..955f2a2 100644 --- a/src/main/java/com/devcycle/sdk/server/common/model/PlatformData.java +++ b/src/main/java/com/devcycle/sdk/server/common/model/PlatformData.java @@ -28,7 +28,7 @@ public class PlatformData { private PlatformData.SdkTypeEnum sdkType = PlatformData.SdkTypeEnum.SERVER; @Schema(description = "DevCycle SDK Version") @Builder.Default - private String sdkVersion = "2.3.0"; + private String sdkVersion = "2.2.1"; @Schema(description = "Hostname where the SDK is running") private String hostname;