Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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.6.2</version>
<version>1.7.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -43,7 +43,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.6.2")
implementation("com.devcycle:java-server-sdk:1.7.0")
```

## DNS Caching
Expand Down
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.36</jmh.version>
<javac.target>1.8</javac.target>
<java.server.sdk.version>1.6.2</java.server.sdk.version>
<java.server.sdk.version>1.7.0</java.server.sdk.version>
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ signing {

group = "com.devcycle"
archivesBaseName = "java-server-sdk"
version = "1.6.2"
version = "1.7.0"

publishing {
publications {
Expand Down Expand Up @@ -87,7 +87,7 @@ repositories {
sourceCompatibility = JavaVersion.VERSION_1_8

def wasmResourcePath = "$projectDir/src/main/resources"
def wasmVersion = "1.6.7"
def wasmVersion = "1.7.0"
def wasmUrl = "https://unpkg.com/@devcycle/bucketing-assembly-script@$wasmVersion/build/bucketing-lib.release.wasm"
task downloadDVCBucketingWASM(type: Download) {
src wasmUrl
Expand Down
2 changes: 1 addition & 1 deletion example-cloud/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
compileOnly('org.projectlombok:lombok:1.18.24')

// The line below makes the Example App use the production build of the Java Server SDK
implementation("com.devcycle:java-server-sdk:1.6.2")
implementation("com.devcycle:java-server-sdk:1.7.0")

// The line below makes the Example App use the local version of the Java Server SDK
// Run `./gradlew build` in the root directory (`cd .. && ./gradlew build`) to build the local version of the SDK
Expand Down
2 changes: 1 addition & 1 deletion example-local/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
compileOnly('org.projectlombok:lombok:1.18.24')

// The line below makes the Example App use the production build of the Java Server SDK
implementation("com.devcycle:java-server-sdk:1.6.2")
implementation("com.devcycle:java-server-sdk:1.7.0")

// The line below makes the Example App use the local version of the Java Server SDK
// Run `./gradlew build` in the root directory (`cd .. && ./gradlew build`) to build the local version of the SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType

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

@Schema(description = "Hostname where the SDK is running")
private String hostname;
Expand Down
Binary file modified src/main/resources/bucketing-lib.release.wasm
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,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.6.2", user.getSdkVersion());
Assert.assertEquals("1.7.0", user.getSdkVersion());
}
}