Skip to content

Commit

Permalink
release 5.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
szagr committed May 25, 2023
1 parent 198a1c3 commit 00ba9ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ Check out all the resources and all the Java code examples in the [Official Docu


## Release notes

v5.2.3
- update dependency versions

v5.2.2
- add constant for "Globals" in Emailv31

Expand Down Expand Up @@ -84,7 +88,7 @@ Add the following in your `pom.xml`
<dependency>
<groupId>com.mailjet</groupId>
<artifactId>mailjet-client</artifactId>
<version>5.2.2</version>
<version>5.2.3</version>
</dependency>
</dependencies>
```
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!--General configuration -->
<groupId>com.mailjet</groupId>
<artifactId>mailjet-client</artifactId>
<version>5.2.2</version>
<version>5.2.3</version>
<packaging>jar</packaging>
<name>Mailjet Client</name>
<description>A Mailjet API Client</description>
Expand All @@ -27,7 +27,7 @@
<connection>scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</connection>
<developerConnection>scm:git:https://github.com/mailjet/mailjet-apiv3-java.git</developerConnection>
<url>[email protected]:mailjet/mailjet-apiv3-java.git</url>
<tag>mailjet-client-5.2.2</tag>
<tag>mailjet-client-5.2.3</tag>
</scm>
<!--License-->
<licenses>
Expand Down Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
<version>20230227</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mailjet/client/MailjetClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MailjetClient {
private ClientOptions _options;
private OkHttpClient _client;

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

/**
* Deprecated - please, use MailjetClient(ClientOptions clientOptions) ctor instead
Expand Down

0 comments on commit 00ba9ad

Please sign in to comment.