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 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ 3.0.4] - 2016-07-19
5
+ ### Fixed
6
+ - [ Fix for issue #120 ] ( https://github.com/sendgrid/sendgrid-java/issues/120 ) : Unsupported Media Type if subject has letters with accent (like 'é' )
7
+ - Updated [ java-http-client] ( https://github.com/sendgrid/java-http-client ) dependency to [ 2.3.2] ( https://github.com/sendgrid/java-http-client/releases/tag/v2.3.2 )
8
+
4
9
## [ 3.0.3] - 2016-07-12
5
10
### Added
6
11
- Update docs, unit tests and examples to include Sender ID
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.3 /sendgrid-3.0.3 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.3 /sendgrid-3.0.3 -jar.jar:. Example
105
+ javac -classpath ../repo/com/sendgrid/3.0.4 /sendgrid-3.0.4 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.4 /sendgrid-3.0.4 -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 @@ -48,7 +48,7 @@ Add the following to your build.gradle file in the root of your project.
48
48
...
49
49
dependencies {
50
50
...
51
- compile 'com.sendgrid:sendgrid-java:3.0.3 '
51
+ compile 'com.sendgrid:sendgrid-java:3.0.4 '
52
52
}
53
53
54
54
repositories {
@@ -73,7 +73,7 @@ mvn install
73
73
74
74
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
75
75
76
- [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.3 /sendgrid-java-3.0.3 -jar.jar )
76
+ [ sendgrid-java.jar] ( http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.4 /sendgrid-java-3.0.4 -jar.jar )
77
77
78
78
``` java
79
79
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.3 '
20
+ version = ' 3.0.4 '
21
21
ext. packaging = ' jar'
22
22
23
23
allprojects {
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.3 </version >
12
+ <version >3.0.4 </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 >
You can’t perform that action at this time.
0 commit comments