Skip to content

Commit 55141e8

Browse files
bumping version numbers (#79)
1 parent ec8cab9 commit 55141e8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
2626
<dependency>
2727
<groupId>com.devcycle</groupId>
2828
<artifactId>java-server-sdk</artifactId>
29-
<version>1.5.2</version>
29+
<version>1.6.0</version>
3030
<scope>compile</scope>
3131
</dependency>
3232
```
@@ -35,7 +35,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
3535
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
3636

3737
```yaml
38-
implementation("com.devcycle:java-server-sdk:1.5.2")
38+
implementation("com.devcycle:java-server-sdk:1.6.0")
3939
```
4040

4141
## 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.5.0</java.server.sdk.version>
67+
<java.server.sdk.version>1.6.0</java.server.sdk.version>
6868
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
6969
</properties>
7070

build.gradle

Lines changed: 1 addition & 1 deletion
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.5.2"
33+
version = "1.6.0"
3434

3535
publishing {
3636
publications {

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.5.2")
25+
implementation("com.devcycle:java-server-sdk:1.6.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.5.2")
25+
implementation("com.devcycle:java-server-sdk:1.6.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.5.2";
49+
private String sdkVersion = "1.6.0";
5050

5151
@Schema(description = "Hostname where the SDK is running")
5252
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
@@ -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.5.2", user.getSdkVersion());
203+
Assert.assertEquals("1.6.0", user.getSdkVersion());
204204
}
205205
}

0 commit comments

Comments
 (0)