Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
taplytics-robot committed Oct 12, 2023
1 parent 4e17233 commit b5edf86
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 @@ -35,7 +35,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.0.0</version>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -44,7 +44,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:2.0.0")
implementation("com.devcycle:java-server-sdk:2.0.1")
```

## 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 @@ -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.0.0</java.server.sdk.version>
<java.server.sdk.version>2.0.1</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.0.0"
version = "2.0.1"

publishing {
publications {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public PlatformData(String platform, String platformVersion, SdkTypeEnum sdkType

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

@Schema(description = "Hostname where the SDK is running")
private String hostname;
Expand Down

0 comments on commit b5edf86

Please sign in to comment.