File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-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.0.1] - 2017-05-22
5+ ### Fix
6+ - PR #199 Return correct Email in getFrom
7+ - BIG thanks to [ Jared Dellitt] ( https://github.com/jareddellitt )
8+
49## [ 4.0.0] - 2017-04-18
510### BREAKING CHANGE
611- PR #162 Update java http client dependency to [ 4.1.0 from 2.3.4] ( https://github.com/sendgrid/java-http-client/releases )
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.0.0 /sendgrid-4.0.0 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.0.0 /sendgrid-4.0.0 -jar.jar:. Example
105+ javac -classpath ../repo/com/sendgrid/4.0.1 /sendgrid-4.0.1 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.0.1 /sendgrid-4.0.1 -jar.jar:. Example
106106```
107107
108108<a name =" understanding_the_codebase " ></a >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Add the following to your build.gradle file in the root of your project.
5353...
5454dependencies {
5555 ...
56- compile 'com.sendgrid:sendgrid-java:4.0.0 '
56+ compile 'com.sendgrid:sendgrid-java:4.0.1 '
5757}
5858
5959repositories {
@@ -72,7 +72,7 @@ mvn install
7272
7373You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
7474
75- [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/4.0.0 /sendgrid-java-4.0.0 -jar.jar )
75+ [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/4.0.1 /sendgrid-java-4.0.1 -jar.jar )
7676
7777## Dependencies
7878
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.0.0 '
20+ version = ' 4.0.1 '
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.0.0 </version >
12+ <version >4.0.1 </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 >
You can’t perform that action at this time.
0 commit comments