Skip to content

Commit d651997

Browse files
Version Bump v2.3.1: Fix charset: Use UTF-8 charset instead of default ISO-8859-1
1 parent 5b26ceb commit d651997

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.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+
611
## [2.3.0] - 2016-06-10
712
### Added
813
- Automatically add Content-Type: application/json when there is a request body

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
1616
...
1717
dependencies {
1818
...
19-
compile 'com.sendgrid:java-http-client:2.3.0'
19+
compile 'com.sendgrid:java-http-client:2.3.1'
2020
}
2121
2222
repositories {
@@ -31,15 +31,15 @@ repositories {
3131
<dependency>
3232
<groupId>com.sendgrid</groupId>
3333
<artifactId>java-http-client</artifactId>
34-
<version>2.3.0</version>
34+
<version>2.3.1</version>
3535
</dependency>
3636
```
3737

3838
`mvn install`
3939

4040
## Fat Jar
4141

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)
4343

4444
## Dependencies
4545

@@ -112,7 +112,7 @@ source ./sendgrid.env
112112
```bash
113113
mvn package
114114
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
116116
```
117117

118118
## Roadmap

build.gradle

+1-1
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.0'
20+
version = '2.3.1'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

+1-1
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.0</version>
14+
<version>2.3.1</version>
1515
<url>https://github.com/sendgrid/java-http-client</url>
1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)