File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed
src/main/java/com/sendgrid/helpers/mail/objects Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22All 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.
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ touch Example.java
102102Add 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 >
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Add the following to your build.gradle file in the root of your project.
6161...
6262dependencies {
6363 ...
64- compile 'com.sendgrid:sendgrid-java:4.1.1 '
64+ compile 'com.sendgrid:sendgrid-java:4.1.2 '
6565}
6666
6767repositories {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'maven'
1717apply plugin : ' signing'
1818
1919group = ' com.sendgrid'
20- version = ' 4.1.1 '
20+ version = ' 4.1.2 '
2121ext. packaging = ' jar'
2222
2323allprojects {
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 )
1312public class ClickTrackingSetting {
1413 @ JsonProperty ("enable" ) private boolean enable ;
1514 @ JsonProperty ("enable_text" ) private boolean enableText ;
You can’t perform that action at this time.
0 commit comments