diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a486e09..7a806890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Change Log All notable changes to this project will be documented in this file. -## [3.0.7] - 2017-08-08 +## [3.0.8] - 2016-08-09 +### Fixed +- Updated dependency for [java-http-client](https://github.com/sendgrid/java-http-client/releases/tag/v2.3.4) +- [Pull #7](https://github.com/sendgrid/java-http-client/pull/7): Fix Response Charset to UTF-8 +- Fixes [issue #6](https://github.com/sendgrid/java-http-client/issues/6): Multi-byte character got garbled on received mail +- BIG thanks to [Yoichi Kikuta](https://github.com/kikutaro) for the pull request! + +## [3.0.7] - 2016-08-08 ### Added - Updated dependency for [java-http-client](https://github.com/sendgrid/java-http-client/releases/tag/v2.3.3) - Pull request [#11](https://github.com/sendgrid/java-http-client/pull/11) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 50180316..15b6412c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,7 +102,7 @@ touch Example.java Add the example you want to test to Example.java, including the headers at the top of the file. ``` bash -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 +javac -classpath ../repo/com/sendgrid/3.0.8/sendgrid-3.0.8-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.8/sendgrid-3.0.8-jar.jar:. Example ``` diff --git a/README.md b/README.md index 93467f46..a04a11d4 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add the following to your build.gradle file in the root of your project. ... dependencies { ... - compile 'com.sendgrid:sendgrid-java:3.0.7' + compile 'com.sendgrid:sendgrid-java:3.0.8' } repositories { @@ -63,7 +63,7 @@ mvn install You can just drop the jar file in. It's a fat jar - it has all the dependencies built in. -[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.7/sendgrid-java-3.0.7-jar.jar) +[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.8/sendgrid-java-3.0.8-jar.jar) ```java import com.sendgrid.*; diff --git a/build.gradle b/build.gradle index cca0a1c9..67913ce1 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'com.sendgrid' -version = '3.0.7' +version = '3.0.8' ext.packaging = 'jar' allprojects { @@ -45,7 +45,7 @@ buildscript { } dependencies { - compile 'com.sendgrid:java-http-client:2.3.3' + compile 'com.sendgrid:java-http-client:2.3.4' compile 'com.fasterxml.jackson.core:jackson-core:2.5.3' compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.3' compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3' diff --git a/pom.xml b/pom.xml index 8e73d33f..44e9021e 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.sendgrid sendgrid-java SendGrid Java helper library - 3.0.7 + 3.0.8 This Java module allows you to quickly and easily send emails through SendGrid using Java. https://github.com/sendgrid/sendgrid-java @@ -89,7 +89,7 @@ com.sendgrid java-http-client - 2.3.3 + 2.3.4 com.fasterxml.jackson.core