From d78ec2662dbb78b69b2e7a4f24d6cf0ef07e0da1 Mon Sep 17 00:00:00 2001 From: Kewyn Akshlley Date: Thu, 30 Oct 2025 19:43:07 -0300 Subject: [PATCH] chore: Bump to v4.9.0 --- gradle.properties | 2 +- src/main/java/com/resend/core/net/impl/HttpClient.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 571503b..ad7512d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.resend -VERSION_NAME=4.9.0-alpha.2 +VERSION_NAME=4.9.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 0417d5c..f54e2e6 100644 --- a/src/main/java/com/resend/core/net/impl/HttpClient.java +++ b/src/main/java/com/resend/core/net/impl/HttpClient.java @@ -20,7 +20,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.9.0-alpha.2"; + private static final String VERSION_NAME = "4.9.0"; /** The User-Agent header value for HTTP requests. */ public static final String USER_AGENT = "resend-java/" + VERSION_NAME;