From 8a2e0239b3b9c002d9758d83184e8fb7c13a47e1 Mon Sep 17 00:00:00 2001 From: Kewyn Akshlley Date: Tue, 14 Jan 2025 11:29:00 -0300 Subject: [PATCH] chore: Bump v4.1.0 (#39) --- 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 455dc83..f6ceec6 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:4.0.0' +implementation 'com.resend:resend-java:4.1.0' ``` Maven @@ -21,7 +21,7 @@ Maven com.resend resend-java - 4.0.0 + 4.1.0 ``` diff --git a/gradle.properties b/gradle.properties index f209ab0..5b9ed76 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.resend -VERSION_NAME=4.0.0 +VERSION_NAME=4.1.0 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 514de38..373d85e 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 = "4.0.0"; + private static final String VERSION_NAME = "4.1.0"; /** The User-Agent header value for HTTP requests. */ public static final String USER_AGENT = "resend-java/" + VERSION_NAME;