Skip to content

Commit

Permalink
chore: Bump to v3.1.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
kewynakshlley committed Jun 11, 2024
1 parent a493e2d commit 4de175e
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 @@ -12,7 +12,7 @@ To install the Java SDK, add the following dependency to your project:
Gradle

```gradle
implementation 'com.resend:resend-java:3.0.2'
implementation 'com.resend:resend-java:3.1.0'
```

Maven
Expand All @@ -21,7 +21,7 @@ Maven
<dependency>
<groupId>com.resend</groupId>
<artifactId>resend-java</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.resend
VERSION_NAME=3.0.2
VERSION_NAME=3.1.0

POM_URL=https://github.com/resendlabs/resend-java
POM_SCM_URL=https://github.com/resendlabs/resend-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/resend/core/net/impl/HttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class HttpClient implements IHttpClient<Response> {
public static final String BASE_API = "https://api.resend.com";

/** The version of the API */
private static final String VERSION_NAME = "3.0.2";
private static final String VERSION_NAME = "3.1.0";

/** The User-Agent header value for HTTP requests. */
public static final String USER_AGENT = "resend-java/" + VERSION_NAME;
Expand Down

0 comments on commit 4de175e

Please sign in to comment.