Skip to content

Commit 8b35e86

Browse files
committed
[release] 1.3.0
1 parent 1a7de31 commit 8b35e86

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
1818
<dependency>
1919
<groupId>com.devcycle</groupId>
2020
<artifactId>java-server-sdk</artifactId>
21-
<version>1.2.0</version>
21+
<version>1.3.0</version>
2222
<scope>compile</scope>
2323
</dependency>
2424
```
@@ -27,7 +27,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
2727
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
2828

2929
```yaml
30-
implementation("com.devcycle:java-server-sdk:1.2.0")
30+
implementation("com.devcycle:java-server-sdk:1.3.0")
3131
```
3232

3333
## DNS Caching

build.gradle

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

3030
group = "com.devcycle"
3131
archivesBaseName = "java-server-sdk"
32-
version = "1.2.0"
32+
version = "1.3.0"
3333

3434
uploadArchives {
3535
repositories {

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.2.0";
47+
private String sdkVersion = "1.3.0";
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
@@ -156,6 +156,6 @@ private void assertUserDefaultsCorrect(User user) {
156156
Assert.assertEquals("Java", user.getPlatform());
157157
Assert.assertEquals(PlatformData.SdkTypeEnum.SERVER, user.getSdkType());
158158
Assert.assertNotNull(user.getPlatformVersion());
159-
Assert.assertEquals("1.2.0", user.getSdkVersion());
159+
Assert.assertEquals("1.3.0", user.getSdkVersion());
160160
}
161161
}

0 commit comments

Comments
 (0)