Skip to content

Commit 82b2867

Browse files
Version Bump v4.1.2: PR #220 Alway serialize click-tracking parameters
1 parent d3f4f89 commit 82b2867

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [4.1.2] - 2017-10-30
5+
### Added
6+
- PR #220 Alway serialize click-tracking parameters.
7+
- BIG thanks to [Mattia Barbon](https://github.com/mbarbon)
8+
49
## [4.1.1] - 2017-10-10
510
### Added
611
- PR #247 Added Javadocs.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ touch Example.java
102102
Add the example you want to test to Example.java, including the headers at the top of the file.
103103

104104
``` bash
105-
javac -classpath ../repo/com/sendgrid/4.1.1/sendgrid-4.1.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.1.0/sendgrid-4.1.1-jar.jar:. Example
105+
javac -classpath ../repo/com/sendgrid/4.1.2/sendgrid-4.1.2-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.1.2/sendgrid-4.1.2-jar.jar:. Example
106106
```
107107

108108
<a name="understanding-the-codebase"></a>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Add the following to your build.gradle file in the root of your project.
6161
...
6262
dependencies {
6363
...
64-
compile 'com.sendgrid:sendgrid-java:4.1.1'
64+
compile 'com.sendgrid:sendgrid-java:4.1.2'
6565
}
6666
6767
repositories {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'maven'
1717
apply plugin: 'signing'
1818

1919
group = 'com.sendgrid'
20-
version = '4.1.1'
20+
version = '4.1.2'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>com.sendgrid</groupId>
1010
<artifactId>sendgrid-java</artifactId>
1111
<name>SendGrid Java helper library</name>
12-
<version>4.1.1</version>
12+
<version>4.1.2</version>
1313
<description>This Java module allows you to quickly and easily send emails through SendGrid using Java.</description>
1414
<url>https://github.com/sendgrid/sendgrid-java</url>
1515
<licenses>

src/main/java/com/sendgrid/helpers/mail/objects/ClickTrackingSetting.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* Settings to determine how you would like to track the
1010
* metrics of how your recipients interact with your email.
1111
*/
12-
@JsonInclude(Include.NON_DEFAULT)
1312
public class ClickTrackingSetting {
1413
@JsonProperty("enable") private boolean enable;
1514
@JsonProperty("enable_text") private boolean enableText;

0 commit comments

Comments
 (0)