Skip to content

Commit

Permalink
Version Bump v2.3.4: Fix Response Charset to UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 9, 2016
1 parent 7492ee0 commit 7dd02e9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

<a name="understanding_the_codebase"></a>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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.*;
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>com.sendgrid</groupId>
<artifactId>sendgrid-java</artifactId>
<name>SendGrid Java helper library</name>
<version>3.0.7</version>
<version>3.0.8</version>
<description>This Java module allows you to quickly and easily send emails through SendGrid using Java.</description>
<url>https://github.com/sendgrid/sendgrid-java</url>
<licenses>
Expand Down Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>com.sendgrid</groupId>
<artifactId>java-http-client</artifactId>
<version>2.3.3</version>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down

0 comments on commit 7dd02e9

Please sign in to comment.