Skip to content

Commit 728dbf9

Browse files
Version Bump v2.3.3: #11 Better error handling
1 parent 79d1539 commit 728dbf9

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ 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.3] - 2016-08-08
7+
### Added
8+
- Pull request [#11](https://github.com/sendgrid/java-http-client/pull/11)
9+
- Solves [issue #10](https://github.com/sendgrid/java-http-client/issues/10): Improve Error Handling
10+
- Now error messages are passed through from the server
11+
- BIG thanks to [shuron](https://github.com/shuron) / [Alexander Holbreich](https://github.com/aholbreich) for the pull request!
12+
613
## [2.3.2] - 2016-07-18
714
### Fixed
815
- 2.3.1 did not upload correctly

README.md

+3-3
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.2'
23+
compile 'com.sendgrid:java-http-client:2.3.3'
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.2</version>
38+
<version>2.3.3</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.2/java-http-client-2.3.2-jar.jar)
46+
[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/2.3.3/java-http-client-2.3.3-jar.jar)
4747

4848
## Dependencies
4949

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.2'
20+
version = '2.3.3'
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.2</version>
14+
<version>2.3.3</version>
1515
<url>https://github.com/sendgrid/java-http-client</url>
1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)