File tree Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ 3.0.7] - 2017-08-08
5
+ ### Added
6
+ - Updated dependency for [ java-http-client] ( https://github.com/sendgrid/java-http-client/releases/tag/v2.3.3 )
7
+ - Pull request [ #11 ] ( https://github.com/sendgrid/java-http-client/pull/11 )
8
+ - Solves [ issue #10 ] ( https://github.com/sendgrid/java-http-client/issues/10 ) : Improve Error Handling
9
+ - Now error messages are passed through from the SendGrid server
10
+ - BIG thanks to [ shuron] ( https://github.com/shuron ) / [ Alexander Holbreich] ( https://github.com/aholbreich ) for the pull request!
11
+
4
12
## [ 3.0.6] - 2016-07-26
5
13
### Added
6
14
- [ Troubleshooting] ( https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md ) section
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ touch Example.java
102
102
Add the example you want to test to Example.java, including the headers at the top of the file.
103
103
104
104
``` bash
105
- javac -classpath ../repo/com/sendgrid/3.0.6 /sendgrid-3.0.6 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.6 /sendgrid-3.0.6 -jar.jar:. Example
105
+ javac -classpath ../repo/com/sendgrid/3.0.7 /sendgrid-3.0.7 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.7 /sendgrid-3.0.7 -jar.jar:. Example
106
106
```
107
107
108
108
<a name =" understanding_the_codebase " ></a >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Add the following to your build.gradle file in the root of your project.
38
38
...
39
39
dependencies {
40
40
...
41
- compile 'com.sendgrid:sendgrid-java:3.0.6 '
41
+ compile 'com.sendgrid:sendgrid-java:3.0.7 '
42
42
}
43
43
44
44
repositories {
@@ -63,7 +63,7 @@ mvn install
63
63
64
64
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
65
65
66
- [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.6 /sendgrid-java-3.0.6 -jar.jar )
66
+ [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.7 /sendgrid-java-3.0.7 -jar.jar )
67
67
68
68
``` java
69
69
import com.sendgrid.* ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'maven'
17
17
apply plugin : ' signing'
18
18
19
19
group = ' com.sendgrid'
20
- version = ' 3.0.6 '
20
+ version = ' 3.0.7 '
21
21
ext. packaging = ' jar'
22
22
23
23
allprojects {
@@ -45,7 +45,7 @@ buildscript {
45
45
}
46
46
47
47
dependencies {
48
- compile ' com.sendgrid:java-http-client:2.3.2 '
48
+ compile ' com.sendgrid:java-http-client:2.3.3 '
49
49
compile ' com.fasterxml.jackson.core:jackson-core:2.5.3'
50
50
compile ' com.fasterxml.jackson.core:jackson-annotations:2.5.3'
51
51
compile ' com.fasterxml.jackson.core:jackson-databind:2.5.3'
Original file line number Diff line number Diff line change 9
9
<groupId >com.sendgrid</groupId >
10
10
<artifactId >sendgrid-java</artifactId >
11
11
<name >SendGrid Java helper library</name >
12
- <version >3.0.6 </version >
12
+ <version >3.0.7 </version >
13
13
<description >This Java module allows you to quickly and easily send emails through SendGrid using Java.</description >
14
14
<url >https://github.com/sendgrid/sendgrid-java</url >
15
15
<licenses >
89
89
<dependency >
90
90
<groupId >com.sendgrid</groupId >
91
91
<artifactId >java-http-client</artifactId >
92
- <version >2.3.2 </version >
92
+ <version >2.3.3 </version >
93
93
</dependency >
94
94
<dependency >
95
95
<groupId >com.fasterxml.jackson.core</groupId >
You can’t perform that action at this time.
0 commit comments