File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
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
+
6
12
## [ 2.3.3] - 2016-08-08
7
13
### Added
8
14
- Pull request [ #11 ] ( https://github.com/sendgrid/java-http-client/pull/11 )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ source ./sendgrid.env
89
89
``` bash
90
90
./gradlew build
91
91
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
93
93
```
94
94
95
95
<a name =" understanding_the_codebase " ></a >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
20
20
...
21
21
dependencies {
22
22
...
23
- compile 'com.sendgrid:java-http-client:2.3.3 '
23
+ compile 'com.sendgrid:java-http-client:2.3.4 '
24
24
}
25
25
26
26
repositories {
@@ -35,15 +35,15 @@ repositories {
35
35
<dependency >
36
36
<groupId >com.sendgrid</groupId >
37
37
<artifactId >java-http-client</artifactId >
38
- <version >2.3.3 </version >
38
+ <version >2.3.4 </version >
39
39
</dependency >
40
40
```
41
41
42
42
` mvn install `
43
43
44
44
## Install via Fat Jar
45
45
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 )
47
47
48
48
## Dependencies
49
49
@@ -116,7 +116,7 @@ source ./sendgrid.env
116
116
``` bash
117
117
mvn package
118
118
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
120
120
```
121
121
122
122
## Roadmap
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 = ' 2.3.3 '
20
+ version = ' 2.3.4 '
21
21
ext. packaging = ' jar'
22
22
23
23
allprojects {
Original file line number Diff line number Diff line change 11
11
<packaging >jar</packaging >
12
12
<name >A simple HTTP client</name >
13
13
<description >HTTP REST client, simplified for Java</description >
14
- <version >2.3.3 </version >
14
+ <version >2.3.4 </version >
15
15
<url >https://github.com/sendgrid/java-http-client</url >
16
16
<licenses >
17
17
<license >
You can’t perform that action at this time.
0 commit comments