Skip to content

Commit 1c95bef

Browse files
Merge pull request #163 from mailjet/release-520
release 5.2.0
2 parents 6978144 + 5b418b9 commit 1c95bef

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

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

4949

5050
## Release notes
51+
v5.2.0
52+
- added async methods
53+
- added automatic module nam
54+
- added possibility to create attachments form the InputStream
55+
5156
v5.1.1
5257
- fixes adding additional quotes during serialization of string variables adn headers in TransactionalEmailBuilder
5358

@@ -73,7 +78,7 @@ Add the following in your `pom.xml`
7378
<dependency>
7479
<groupId>com.mailjet</groupId>
7580
<artifactId>mailjet-client</artifactId>
76-
<version>5.1.1</version>
81+
<version>5.2.0</version>
7782
</dependency>
7883
</dependencies>
7984
```

pom.xml

Lines changed: 2 additions & 2 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.1.1</version>
9+
<version>5.2.0</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>git@github.com:mailjet/mailjet-apiv3-java.git</url>
30-
<tag>mailjet-client-5.1.1</tag>
30+
<tag>mailjet-client-5.2.0</tag>
3131
</scm>
3232
<!--License-->
3333
<licenses>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class MailjetClient {
3737
private ClientOptions _options;
3838
private OkHttpClient _client;
3939

40-
private static final String userAgent = "mailjet-apiv3-java/v5.1.1";
40+
private static final String userAgent = "mailjet-apiv3-java/v5.2.0";
4141

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

0 commit comments

Comments
 (0)