Skip to content

Commit ae1441b

Browse files
Merge pull request #151 from mailjet/release-5.1.1
release v5.1.1
2 parents b0c05fe + 7f8ab9c commit ae1441b

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
This repo features the official Java wrapper for the Mailjet API.
1818

19-
Check out all the resources and all the Java code examples in the [Offical Documentation][doc].
19+
Check out all the resources and all the Java code examples in the [Official Documentation][doc].
2020

2121
## Table of contents
2222

@@ -48,6 +48,9 @@ Check out all the resources and all the Java code examples in the [Offical Docum
4848

4949

5050
## Release notes
51+
v5.1.1
52+
- fixes adding additional quotes during serialization of string variables adn headers in TransactionalEmailBuilder
53+
5154
v5.1.0
5255
- downgraded OkHttpClient to v3.12 to be compatible with the current version in Spring Boot
5356
- adds [transactional email builder](src/test/java/com/mailjet/client/TransactionalEmailBuilderIT.java) to make possible sending messages easier
@@ -70,7 +73,7 @@ Add the following in your `pom.xml`
7073
<dependency>
7174
<groupId>com.mailjet</groupId>
7275
<artifactId>mailjet-client</artifactId>
73-
<version>5.1.0</version>
76+
<version>5.1.1</version>
7477
</dependency>
7578
</dependencies>
7679
```

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.0</version>
9+
<version>5.1.1</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.0</tag>
30+
<tag>mailjet-client-5.1.1</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
@@ -35,7 +35,7 @@ public class MailjetClient {
3535
private ClientOptions _options;
3636
private OkHttpClient _client;
3737

38-
private static final String userAgent = "mailjet-apiv3-java/v5.1.0";
38+
private static final String userAgent = "mailjet-apiv3-java/v5.1.1";
3939

4040
/**
4141
* Deprecated - please, use MailjetClient(ClientOptions clientOptions) ctor instead

0 commit comments

Comments
 (0)