Skip to content

Commit

Permalink
Release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taplytics-robot committed Oct 1, 2024
1 parent 6ad44fa commit b6d12c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ldd --version
You can use the SDK in your Gradle project by adding the following to *build.gradle*:

```yaml
implementation("com.devcycle:java-server-sdk:2.3.0")
implementation("com.devcycle:java-server-sdk:2.4.0")
```

### Maven
Expand All @@ -43,7 +43,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>2.3.0</version>
<version>2.4.0</version>
<scope>compile</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.36</jmh.version>
<javac.target>11</javac.target>
<java.server.sdk.version>2.3.0</java.server.sdk.version>
<java.server.sdk.version>2.4.0</java.server.sdk.version>
<uberjar.name>java-server-sdk-benchmarks</uberjar.name>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ java {

group = "com.devcycle"
archivesBaseName = "java-server-sdk"
version = "2.3.0"
version = "2.4.0"

publishing {
publications {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class PlatformData {
private PlatformData.SdkTypeEnum sdkType = PlatformData.SdkTypeEnum.SERVER;
@Schema(description = "DevCycle SDK Version")
@Builder.Default
private String sdkVersion = "2.3.0";
private String sdkVersion = "2.4.0";
@Schema(description = "Hostname where the SDK is running")
private String hostname;

Expand Down

0 comments on commit b6d12c8

Please sign in to comment.