Skip to content

Commit

Permalink
[release] 1.2.0 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathannorris authored Feb 21, 2023
1 parent 2df450c commit f05f0bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.1.3</version>
<version>1.2.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.1.3")
implementation("com.devcycle:java-server-sdk:1.2.0")
```

## DNS Caching
Expand Down
4 changes: 2 additions & 2 deletions 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.1.3"
version = "1.2.0"

uploadArchives {
repositories {
Expand Down Expand Up @@ -103,7 +103,7 @@ task execute(type:JavaExec) {
}

def wasmResourcePath = "$projectDir/src/main/resources"
def wasmVersion = "1.1.28"
def wasmVersion = "1.3.3"
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
task downloadDVCBucketingWASM(type: Download) {
src wasmUrl
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.1.3";
private String sdkVersion = "1.2.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.1.3", user.getSdkVersion());
Assert.assertEquals("1.2.0", user.getSdkVersion());
}
}

0 comments on commit f05f0bc

Please sign in to comment.