Skip to content

Commit f05f0bc

Browse files
[release] 1.2.0 (#48)
1 parent 2df450c commit f05f0bc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.1.3</version>
21+
<version>1.2.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.1.3")
30+
implementation("com.devcycle:java-server-sdk:1.2.0")
3131
```
3232

3333
## DNS Caching

build.gradle

Lines changed: 2 additions & 2 deletions
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.1.3"
32+
version = "1.2.0"
3333

3434
uploadArchives {
3535
repositories {
@@ -103,7 +103,7 @@ task execute(type:JavaExec) {
103103
}
104104

105105
def wasmResourcePath = "$projectDir/src/main/resources"
106-
def wasmVersion = "1.1.28"
106+
def wasmVersion = "1.3.3"
107107
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
108108
task downloadDVCBucketingWASM(type: Download) {
109109
src wasmUrl

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.1.3";
47+
private String sdkVersion = "1.2.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.1.3", user.getSdkVersion());
159+
Assert.assertEquals("1.2.0", user.getSdkVersion());
160160
}
161161
}

0 commit comments

Comments
 (0)