Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump to 3.0.0 #23

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:2.3.0'
implementation 'com.resend:resend-java:3.0.0'
```

Maven
Expand All @@ -21,7 +21,7 @@ Maven
<dependency>
<groupId>com.resend</groupId>
<artifactId>resend-java</artifactId>
<version>2.3.0</version>
<version>3.0.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=2.3.0
VERSION_NAME=3.0.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 = "2.3.0";
private static final String VERSION_NAME = "3.0.0";

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