Skip to content

Commit 00ba9ad

Browse files
committed
release 5.2.3
1 parent 198a1c3 commit 00ba9ad

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ Check out all the resources and all the Java code examples in the [Official Docu
4848

4949

5050
## Release notes
51+
52+
v5.2.3
53+
- update dependency versions
54+
5155
v5.2.2
5256
- add constant for "Globals" in Emailv31
5357

@@ -84,7 +88,7 @@ Add the following in your `pom.xml`
8488
<dependency>
8589
<groupId>com.mailjet</groupId>
8690
<artifactId>mailjet-client</artifactId>
87-
<version>5.2.2</version>
91+
<version>5.2.3</version>
8892
</dependency>
8993
</dependencies>
9094
```

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.2</version>
9+
<version>5.2.3</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.2</tag>
30+
<tag>mailjet-client-5.2.3</tag>
3131
</scm>
3232
<!--License-->
3333
<licenses>
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.json</groupId>
6464
<artifactId>json</artifactId>
65-
<version>20220320</version>
65+
<version>20230227</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
@@ -38,7 +38,7 @@ public class MailjetClient {
3838
private ClientOptions _options;
3939
private OkHttpClient _client;
4040

41-
private static final String userAgent = "mailjet-apiv3-java/v5.2.2";
41+
private static final String userAgent = "mailjet-apiv3-java/v5.2.3";
4242

4343
/**
4444
* Deprecated - please, use MailjetClient(ClientOptions clientOptions) ctor instead

0 commit comments

Comments
 (0)