Skip to content

Commit 725e30d

Browse files
bumping version numbers (#86)
1 parent eb6ae0f commit 725e30d

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
@@ -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.7.0</version>
37+
<version>1.7.1</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.7.0")
46+
implementation("com.devcycle:java-server-sdk:1.7.1")
4747
```
4848

4949
## DNS Caching

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<jmh.version>1.36</jmh.version>
3535
<javac.target>1.8</javac.target>
36-
<java.server.sdk.version>1.7.0</java.server.sdk.version>
36+
<java.server.sdk.version>1.7.1</java.server.sdk.version>
3737
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
3838
</properties>
3939

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.7.0"
33+
version = "1.7.1"
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.7.0")
25+
implementation("com.devcycle:java-server-sdk:1.7.1")
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.7.0")
25+
implementation("com.devcycle:java-server-sdk:1.7.1")
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.7.0";
49+
private String sdkVersion = "1.7.1";
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.7.0", user.getSdkVersion());
203+
Assert.assertEquals("1.7.1", user.getSdkVersion());
204204
}
205205
}

0 commit comments

Comments
 (0)