Skip to content

Commit 7dd02e9

Browse files
Version Bump v2.3.4: Fix Response Charset to UTF-8
1 parent 7492ee0 commit 7dd02e9

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## [3.0.7] - 2017-08-08
4+
## [3.0.8] - 2016-08-09
5+
### Fixed
6+
- Updated dependency for [java-http-client](https://github.com/sendgrid/java-http-client/releases/tag/v2.3.4)
7+
- [Pull #7](https://github.com/sendgrid/java-http-client/pull/7): Fix Response Charset to UTF-8
8+
- Fixes [issue #6](https://github.com/sendgrid/java-http-client/issues/6): Multi-byte character got garbled on received mail
9+
- BIG thanks to [Yoichi Kikuta](https://github.com/kikutaro) for the pull request!
10+
11+
## [3.0.7] - 2016-08-08
512
### Added
613
- Updated dependency for [java-http-client](https://github.com/sendgrid/java-http-client/releases/tag/v2.3.3)
714
- Pull request [#11](https://github.com/sendgrid/java-http-client/pull/11)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ touch Example.java
102102
Add 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/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
105+
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
106106
```
107107

108108
<a name="understanding_the_codebase"></a>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the following to your build.gradle file in the root of your project.
3838
...
3939
dependencies {
4040
...
41-
compile 'com.sendgrid:sendgrid-java:3.0.7'
41+
compile 'com.sendgrid:sendgrid-java:3.0.8'
4242
}
4343
4444
repositories {
@@ -63,7 +63,7 @@ mvn install
6363

6464
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
6565

66-
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.7/sendgrid-java-3.0.7-jar.jar)
66+
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.8/sendgrid-java-3.0.8-jar.jar)
6767

6868
```java
6969
import com.sendgrid.*;

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'maven'
1717
apply plugin: 'signing'
1818

1919
group = 'com.sendgrid'
20-
version = '3.0.7'
20+
version = '3.0.8'
2121
ext.packaging = 'jar'
2222

2323
allprojects {
@@ -45,7 +45,7 @@ buildscript {
4545
}
4646

4747
dependencies {
48-
compile 'com.sendgrid:java-http-client:2.3.3'
48+
compile 'com.sendgrid:java-http-client:2.3.4'
4949
compile 'com.fasterxml.jackson.core:jackson-core:2.5.3'
5050
compile 'com.fasterxml.jackson.core:jackson-annotations:2.5.3'
5151
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>com.sendgrid</groupId>
1010
<artifactId>sendgrid-java</artifactId>
1111
<name>SendGrid Java helper library</name>
12-
<version>3.0.7</version>
12+
<version>3.0.8</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>
@@ -89,7 +89,7 @@
8989
<dependency>
9090
<groupId>com.sendgrid</groupId>
9191
<artifactId>java-http-client</artifactId>
92-
<version>2.3.3</version>
92+
<version>2.3.4</version>
9393
</dependency>
9494
<dependency>
9595
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)