Skip to content

Commit

Permalink
v3.2.0: Add support for warrant token header and list warrants endpoi…
Browse files Browse the repository at this point in the history
…nt (#29)
  • Loading branch information
kkajla12 authored Aug 31, 2023
1 parent 6aecb73 commit 7e2dd11
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.1.0'
implementation group: 'dev.warrant', name: 'warrant-java', version: '3.2.0'
```

### Maven
Expand All @@ -19,7 +19,7 @@ implementation group: 'dev.warrant', name: 'warrant-java', version: '3.1.0'
<dependency>
<groupId>dev.warrant</groupId>
<artifactId>warrant-java</artifactId>
<version>3.1.0</version>
<version>3.2.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.1.0"
version = "3.2.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 @@ -27,7 +27,7 @@
import jakarta.ws.rs.core.UriBuilder;

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

final HttpClient client;
Expand Down

0 comments on commit 7e2dd11

Please sign in to comment.