Skip to content

Commit

Permalink
v3.5.0: Add delete object method (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
akajla09 authored Sep 27, 2023
1 parent 53f3d2c commit e3db8d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Use [Warrant](https://warrant.dev/) in server-side Java projects.
### Gradle

```groovy
implementation group: 'dev.warrant', name: 'warrant-java', version: '3.4.0'
implementation group: 'dev.warrant', name: 'warrant-java', version: '3.5.0'
```

### Maven
Expand All @@ -19,7 +19,7 @@ implementation group: 'dev.warrant', name: 'warrant-java', version: '3.4.0'
<dependency>
<groupId>dev.warrant</groupId>
<artifactId>warrant-java</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
</dependency>
```

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

group = "dev.warrant"
version = "3.4.0"
version = "3.5.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/warrant/WarrantBaseClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import jakarta.ws.rs.core.UriBuilder;

public class WarrantBaseClient {
public static final String SDK_VERSION = "3.4.0";
public static final String SDK_VERSION = "3.5.0";
public static final String USER_AGENT = "warrant-java/" + SDK_VERSION;

final HttpClient client;
Expand Down

0 comments on commit e3db8d8

Please sign in to comment.