Skip to content

Commit e44e837

Browse files
Version Bump v2.3.4: Fix Response Charset to UTF-8
1 parent 7e99ce6 commit e44e837

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [2.3.4] - 2016-08-09
7+
### Fix
8+
- [Pull #7](https://github.com/sendgrid/java-http-client/pull/7): Fix Response Charset to UTF-8
9+
- Fixes [issue #6](https://github.com/sendgrid/java-http-client/issues/6): Multi-byte character got garbled on received mail
10+
- BIG thanks to [Yoichi Kikuta](https://github.com/kikutaro) for the pull request!
11+
612
## [2.3.3] - 2016-08-08
713
### Added
814
- 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
@@ -89,7 +89,7 @@ source ./sendgrid.env
8989
```bash
9090
./gradlew build
9191
cd examples
92-
javac -classpath ./commons-logging-1.2.jar:./httpcore-4.4.4.jar:./httpclient-4.5.2.jar:./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:../repo/com/sendgrid/2.3.2/sendgrid-java-http-client-2.3.2-jar.jar:. Example.java && java -classpath ./commons-logging-1.2.jar:./httpcore-4.4.4.jar:./httpclient-4.5.2.jar:./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:../repo/com/sendgrid/2.3.2/sendgrid-java-http-client-2.3.2-jar.jar:. Example
92+
javac -classpath ./commons-logging-1.2.jar:./httpcore-4.4.4.jar:./httpclient-4.5.2.jar:./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:../repo/com/sendgrid/2.3.4/sendgrid-java-http-client-2.3.4-jar.jar:. Example.java && java -classpath ./commons-logging-1.2.jar:./httpcore-4.4.4.jar:./httpclient-4.5.2.jar:./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:../repo/com/sendgrid/2.3.4/sendgrid-java-http-client-2.3.4-jar.jar:. Example
9393
```
9494

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
2020
...
2121
dependencies {
2222
...
23-
compile 'com.sendgrid:java-http-client:2.3.3'
23+
compile 'com.sendgrid:java-http-client:2.3.4'
2424
}
2525
2626
repositories {
@@ -35,15 +35,15 @@ repositories {
3535
<dependency>
3636
<groupId>com.sendgrid</groupId>
3737
<artifactId>java-http-client</artifactId>
38-
<version>2.3.3</version>
38+
<version>2.3.4</version>
3939
</dependency>
4040
```
4141

4242
`mvn install`
4343

4444
## Install via Fat Jar
4545

46-
[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/2.3.3/java-http-client-2.3.3-jar.jar)
46+
[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/2.3.4/java-http-client-2.3.4-jar.jar)
4747

4848
## Dependencies
4949

@@ -116,7 +116,7 @@ source ./sendgrid.env
116116
```bash
117117
mvn package
118118
cd examples
119-
javac -classpath ./{path_to}/java-http-client-2.3.1-jar.jar:. Example.java && java -classpath ./{path_to}/java-http-client-2.3.1-jar.jar:. Example
119+
javac -classpath ./{path_to}/java-http-client-2.3.4-jar.jar:. Example.java && java -classpath ./{path_to}/java-http-client-2.3.4-jar.jar:. Example
120120
```
121121

122122
## Roadmap

build.gradle

Lines changed: 1 addition & 1 deletion
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 = '2.3.3'
20+
version = '2.3.4'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<packaging>jar</packaging>
1212
<name>A simple HTTP client</name>
1313
<description>HTTP REST client, simplified for Java</description>
14-
<version>2.3.3</version>
14+
<version>2.3.4</version>
1515
<url>https://github.com/sendgrid/java-http-client</url>
1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)