File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ 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.1] - 2016-07-08
7
+ ### Fixed
8
+ - [ Fix charset: Use "UTF-8" charset instead of default "ISO-8859-1"] ( https://github.com/sendgrid/java-http-client/pull/5 )
9
+ - Thanks [ DanailMinchev] ( https://github.com/DanailMinchev ) !
10
+
6
11
## [ 2.3.0] - 2016-06-10
7
12
### Added
8
13
- Automatically add Content-Type: application/json when there is a request body
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
16
16
...
17
17
dependencies {
18
18
...
19
- compile 'com.sendgrid:java-http-client:2.3.0 '
19
+ compile 'com.sendgrid:java-http-client:2.3.1 '
20
20
}
21
21
22
22
repositories {
@@ -31,15 +31,15 @@ repositories {
31
31
<dependency >
32
32
<groupId >com.sendgrid</groupId >
33
33
<artifactId >java-http-client</artifactId >
34
- <version >2.3.0 </version >
34
+ <version >2.3.1 </version >
35
35
</dependency >
36
36
```
37
37
38
38
` mvn install `
39
39
40
40
## Fat Jar
41
41
42
- [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/2.3.0 /java-http-client-2.3.0 -jar.jar )
42
+ [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/2.3.1 /java-http-client-2.3.1 -jar.jar )
43
43
44
44
## Dependencies
45
45
@@ -112,7 +112,7 @@ source ./sendgrid.env
112
112
``` bash
113
113
mvn package
114
114
cd examples
115
- javac -classpath ./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:/ {path_to}/java-http-client-2.3.0 -jar.jar:. Example.java && java -classpath ./jackson-databind-2.7.3.jar:./jackson-annotations-2.7.0.jar:./jackson-core-2.7.3.jar:/ {path_to}/java-http-client-2.3.0 -jar.jar:. Example
115
+ 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
116
116
```
117
117
118
118
## 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.0 '
20
+ version = ' 2.3.1 '
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.0 </version >
14
+ <version >2.3.1 </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