Skip to content

Commit ea78374

Browse files
Release 1.8.2
1 parent f223335 commit ea78374

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
3535
<dependency>
3636
<groupId>com.devcycle</groupId>
3737
<artifactId>java-server-sdk</artifactId>
38-
<version>1.8.1</version>
38+
<version>1.8.2</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```
@@ -44,7 +44,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
4444
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
4545

4646
```yaml
47-
implementation("com.devcycle:java-server-sdk:1.8.1")
47+
implementation("com.devcycle:java-server-sdk:1.8.2")
4848
```
4949

5050
## DNS Caching

benchmark/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<jmh.version>1.36</jmh.version>
3535
<javac.target>1.8</javac.target>
36-
<java.server.sdk.version>1.8.1</java.server.sdk.version>
36+
<java.server.sdk.version>1.8.2</java.server.sdk.version>
3737
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
3838
</properties>
3939

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ java {
3131

3232
group = "com.devcycle"
3333
archivesBaseName = "java-server-sdk"
34-
version = "1.8.1"
34+
version = "1.8.2"
3535

3636
publishing {
3737
publications {

example-cloud/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
compileOnly('org.projectlombok:lombok:1.18.24')
2323

2424
// The line below makes the Example App use the production build of the Java Server SDK
25-
implementation("com.devcycle:java-server-sdk:1.8.1")
25+
implementation("com.devcycle:java-server-sdk:1.8.2")
2626

2727
// The line below makes the Example App use the local version of the Java Server SDK
2828
// Run `./gradlew build` in the root directory (`cd .. && ./gradlew build`) to build the local version of the SDK

example-local/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
compileOnly('org.projectlombok:lombok:1.18.24')
2323

2424
// The line below makes the Example App use the production build of the Java Server SDK
25-
implementation("com.devcycle:java-server-sdk:1.8.1")
25+
implementation("com.devcycle:java-server-sdk:1.8.2")
2626

2727
// The line below makes the Example App use the local version of the Java Server SDK
2828
// Run `./gradlew build` in the root directory (`cd .. && ./gradlew build`) to build the local version of the SDK

src/main/java/com/devcycle/sdk/server/common/model/PlatformData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType
4646

4747
@Schema(description = "DevCycle SDK Version")
4848
@Builder.Default
49-
private String sdkVersion = "1.8.1";
49+
private String sdkVersion = "1.8.2";
5050

5151
@Schema(description = "Hostname where the SDK is running")
5252
private String hostname;

0 commit comments

Comments
 (0)