Skip to content

Commit 50b93f1

Browse files
Update the version number to prepare for release (#65)
1 parent 93e96c5 commit 50b93f1

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
2727
<dependency>
2828
<groupId>com.devcycle</groupId>
2929
<artifactId>java-server-sdk</artifactId>
30-
<version>1.4.0</version>
30+
<version>1.5.0</version>
3131
<scope>compile</scope>
3232
</dependency>
3333
```
@@ -36,7 +36,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
3636
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:
3737

3838
```yaml
39-
implementation("com.devcycle:java-server-sdk:1.4.0")
39+
implementation("com.devcycle:java-server-sdk:1.5.0")
4040
```
4141

4242
## DNS Caching

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.4.0"
33+
version = "1.5.0"
3434

3535
publishing {
3636
publications {

example-cloud/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ 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.1.2")
25+
implementation("com.devcycle:java-server-sdk:1.5.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
29-
implementation project(':java-server-sdk')
29+
// implementation project(':java-server-sdk')
3030

3131
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3232
}

example-local/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ 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.1.1")
25+
implementation("com.devcycle:java-server-sdk:1.5.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
29-
implementation project(':java-server-sdk')
29+
//implementation project(':java-server-sdk')
3030

3131
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3232
}

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.4.0";
47+
private String sdkVersion = "1.5.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
@@ -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.4.0", user.getSdkVersion());
203+
Assert.assertEquals("1.5.0", user.getSdkVersion());
204204
}
205205
}

0 commit comments

Comments
 (0)