Skip to content

Commit 5c4bbc6

Browse files
bumping all the versions (#74)
1 parent c9619cb commit 5c4bbc6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
2626
<dependency>
2727
<groupId>com.devcycle</groupId>
2828
<artifactId>java-server-sdk</artifactId>
29-
<version>1.5.1</version>
29+
<version>1.5.2</version>
3030
<scope>compile</scope>
3131
</dependency>
3232
```
@@ -35,7 +35,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
3535
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
3636

3737
```yaml
38-
implementation("com.devcycle:java-server-sdk:1.5.1")
38+
implementation("com.devcycle:java-server-sdk:1.5.2")
3939
```
4040

4141
## DNS Caching

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ signing {
3030

3131
group = "com.devcycle"
3232
archivesBaseName = "java-server-sdk"
33-
version = "1.5.1"
33+
version = "1.5.2"
3434

3535
publishing {
3636
publications {

example-cloud/build.gradle

Lines changed: 1 addition & 1 deletion
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.5.1")
25+
implementation("com.devcycle:java-server-sdk:1.5.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

Lines changed: 1 addition & 1 deletion
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.5.1")
25+
implementation("com.devcycle:java-server-sdk:1.5.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType
4444

4545
@Schema(description = "DevCycle SDK Version")
4646
@Builder.Default
47-
private String sdkVersion = "1.5.1";
47+
private String sdkVersion = "1.5.2";
4848

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

src/test/java/com/devcycle/sdk/server/cloud/DVCCloudClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,6 @@ private void assertUserDefaultsCorrect(User user) {
200200
Assert.assertEquals("Java", user.getPlatform());
201201
Assert.assertEquals(PlatformData.SdkTypeEnum.SERVER, user.getSdkType());
202202
Assert.assertNotNull(user.getPlatformVersion());
203-
Assert.assertEquals("1.5.1", user.getSdkVersion());
203+
Assert.assertEquals("1.5.2", user.getSdkVersion());
204204
}
205205
}

0 commit comments

Comments
 (0)