Skip to content

Commit 1d3af18

Browse files
Release 1.7.0 (#84)
* bump versions * update to newer wasm file
1 parent 03ea495 commit 1d3af18

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
3434
<dependency>
3535
<groupId>com.devcycle</groupId>
3636
<artifactId>java-server-sdk</artifactId>
37-
<version>1.6.2</version>
37+
<version>1.7.0</version>
3838
<scope>compile</scope>
3939
</dependency>
4040
```
@@ -43,7 +43,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
4343
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
4444

4545
```yaml
46-
implementation("com.devcycle:java-server-sdk:1.6.2")
46+
implementation("com.devcycle:java-server-sdk:1.7.0")
4747
```
4848

4949
## DNS Caching

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
6464
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6565
<jmh.version>1.36</jmh.version>
6666
<javac.target>1.8</javac.target>
67-
<java.server.sdk.version>1.6.2</java.server.sdk.version>
67+
<java.server.sdk.version>1.7.0</java.server.sdk.version>
6868
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
6969
</properties>
7070

build.gradle

Lines changed: 2 additions & 2 deletions
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.6.2"
33+
version = "1.7.0"
3434

3535
publishing {
3636
publications {
@@ -87,7 +87,7 @@ repositories {
8787
sourceCompatibility = JavaVersion.VERSION_1_8
8888

8989
def wasmResourcePath = "$projectDir/src/main/resources"
90-
def wasmVersion = "1.6.7"
90+
def wasmVersion = "1.7.0"
9191
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
9292
task downloadDVCBucketingWASM(type: Download) {
9393
src wasmUrl

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.6.2")
25+
implementation("com.devcycle:java-server-sdk:1.7.0")
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.6.2")
25+
implementation("com.devcycle:java-server-sdk:1.7.0")
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
@@ -46,7 +46,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType
4646

4747
@Schema(description = "DevCycle SDK Version")
4848
@Builder.Default
49-
private String sdkVersion = "1.6.2";
49+
private String sdkVersion = "1.7.0";
5050

5151
@Schema(description = "Hostname where the SDK is running")
5252
private String hostname;
194 Bytes
Binary file not shown.

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.6.2", user.getSdkVersion());
203+
Assert.assertEquals("1.7.0", user.getSdkVersion());
204204
}
205205
}

0 commit comments

Comments
 (0)