Skip to content

Commit f647961

Browse files
author
Vitalii.Chornobryvyi
committed
release 5.2.5
1 parent ad8b84c commit f647961

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ Check out all the resources and all the Java code examples in the [Official Docu
4949

5050
## Release notes
5151

52+
v5.2.5
53+
- update dependency versions
54+
5255
v5.2.4
5356
- add ability to attach the file into request
5457
- fix for uploading CSV file through the DATA API
@@ -92,7 +95,7 @@ Add the following in your `pom.xml`
9295
<dependency>
9396
<groupId>com.mailjet</groupId>
9497
<artifactId>mailjet-client</artifactId>
95-
<version>5.2.4</version>
98+
<version>5.2.5</version>
9699
</dependency>
97100
</dependencies>
98101
```

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!--General configuration -->
77
<groupId>com.mailjet</groupId>
88
<artifactId>mailjet-client</artifactId>
9-
<version>5.2.4</version>
9+
<version>5.2.5</version>
1010
<packaging>jar</packaging>
1111
<name>Mailjet Client</name>
1212
<description>A Mailjet API Client</description>
@@ -27,7 +27,7 @@
2727
<connection>scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</connection>
2828
<developerConnection>scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</developerConnection>
2929
<url>[email protected]:mailjet/mailjet-apiv3-java.git</url>
30-
<tag>mailjet-client-5.2.4</tag>
30+
<tag>mailjet-client-5.2.5</tag>
3131
</scm>
3232
<!--License-->
3333
<licenses>
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.json</groupId>
6464
<artifactId>json</artifactId>
65-
<version>20230227</version>
65+
<version>20231013</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>com.google.code.gson</groupId>

src/main/java/com/mailjet/client/MailjetClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class MailjetClient {
4040
private ClientOptions _options;
4141
private OkHttpClient _client;
4242

43-
private static final String userAgent = "mailjet-apiv3-java/v5.2.4";
43+
private static final String userAgent = "mailjet-apiv3-java/v5.2.5";
4444

4545
/**
4646
* Deprecated - please, use MailjetClient(ClientOptions clientOptions) ctor instead

0 commit comments

Comments
 (0)