Skip to content

Commit

Permalink
chore: bump to 2.3.0 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
kewynakshlley authored Dec 16, 2023
1 parent 03b0cec commit c6ecf10
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:2.2.1'
implementation 'com.resend:resend-java:2.3.0'
```

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

Please sign in to comment.