From 08f8ce1993ba8a1c62b49844f25ac1c20ba4766c Mon Sep 17 00:00:00 2001 From: Kewyn Akshlley Date: Sat, 24 Feb 2024 12:53:44 -0300 Subject: [PATCH] chore: Bump to v3.0.2 (#28) --- README.md | 4 ++-- gradle.properties | 2 +- src/main/java/com/resend/core/net/impl/HttpClient.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 733442e..f44bfff 100644 --- a/README.md +++ b/README.md @@ -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.1' +implementation 'com.resend:resend-java:3.0.2' ``` Maven @@ -21,7 +21,7 @@ Maven com.resend resend-java - 3.0.1 + 3.0.2 ``` diff --git a/gradle.properties b/gradle.properties index 8aa3cd3..8eddc97 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.resend -VERSION_NAME=3.0.1 +VERSION_NAME=3.0.2 POM_URL=https://github.com/resendlabs/resend-java POM_SCM_URL=https://github.com/resendlabs/resend-java.git diff --git a/src/main/java/com/resend/core/net/impl/HttpClient.java b/src/main/java/com/resend/core/net/impl/HttpClient.java index 02f22ae..f63ee7e 100644 --- a/src/main/java/com/resend/core/net/impl/HttpClient.java +++ b/src/main/java/com/resend/core/net/impl/HttpClient.java @@ -18,7 +18,7 @@ public class HttpClient implements IHttpClient { public static final String BASE_API = "https://api.resend.com"; /** The version of the API */ - private static final String VERSION_NAME = "3.0.1"; + private static final String VERSION_NAME = "3.0.2"; /** The User-Agent header value for HTTP requests. */ public static final String USER_AGENT = "resend-java/" + VERSION_NAME;