Skip to content

Commit

Permalink
[release] 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushalkapasi committed Feb 28, 2023
1 parent 1a7de31 commit 8b35e86
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
<dependency>
<groupId>com.devcycle</groupId>
<artifactId>java-server-sdk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -27,7 +27,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:

```yaml
implementation("com.devcycle:java-server-sdk:1.2.0")
implementation("com.devcycle:java-server-sdk:1.3.0")
```

## DNS Caching
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ signing {

group = "com.devcycle"
archivesBaseName = "java-server-sdk"
version = "1.2.0"
version = "1.3.0"

uploadArchives {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType

@Schema(description = "DevCycle SDK Version")
@Builder.Default
private String sdkVersion = "1.2.0";
private String sdkVersion = "1.3.0";

@Schema(description = "Hostname where the SDK is running")
private String hostname;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,6 @@ private void assertUserDefaultsCorrect(User user) {
Assert.assertEquals("Java", user.getPlatform());
Assert.assertEquals(PlatformData.SdkTypeEnum.SERVER, user.getSdkType());
Assert.assertNotNull(user.getPlatformVersion());
Assert.assertEquals("1.2.0", user.getSdkVersion());
Assert.assertEquals("1.3.0", user.getSdkVersion());
}
}

0 comments on commit 8b35e86

Please sign in to comment.