File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
Expand file tree Collapse file tree 5 files changed +10
-5
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.
33
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
6+ ## [ 4.1.0] - 2016-10-11
7+ ### BREAKING Change
8+ - [ Pull #17 ] ( https://github.com/sendgrid/java-http-client/pull/17 ) : Assign server response outside try block
9+ - BIG thanks to [ Michael Dempsey] ( https://github.com/bluestealth ) for the pull request!
10+
611## [ 4.0.0] - 2016-10-11
712### BREAKING Change
813- [ Pull #14 ] ( https://github.com/sendgrid/java-http-client/pull/14 ) : Make response have private variables
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ source ./sendgrid.env
8989``` bash
9090./gradlew build
9191cd examples
92- javac -classpath {path_to}/sendgrid-java-http-client-4.0 .0-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.0 .0-jar.jar:. Example
92+ javac -classpath {path_to}/sendgrid-java-http-client-4.1 .0-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.1 .0-jar.jar:. Example
9393```
9494
9595<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/
2020...
2121dependencies {
2222 ...
23- compile 'com.sendgrid:java-http-client:4.0 .0'
23+ compile 'com.sendgrid:java-http-client:4.1 .0'
2424}
2525
2626repositories {
@@ -43,7 +43,7 @@ repositories {
4343
4444## Install via Fat Jar
4545
46- [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/4.0 .0/java-http-client-4.0 .0-jar.jar )
46+ [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/4.1 .0/java-http-client-4.1 .0-jar.jar )
4747
4848## Dependencies
4949
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'signing'
1717apply plugin : ' com.github.johnrengelman.shadow'
1818
1919group = ' com.sendgrid'
20- version = ' 4.0 .0'
20+ version = ' 4.1 .0'
2121ext. packaging = ' jar'
2222
2323allprojects {
Original file line number Diff line number Diff line change 1111 <packaging >jar</packaging >
1212 <name >A simple HTTP client</name >
1313 <description >HTTP REST client, simplified for Java</description >
14- <version >4.0 .0</version >
14+ <version >4.1 .0</version >
1515 <url >https://github.com/sendgrid/java-http-client</url >
1616 <licenses >
1717 <license >
You can’t perform that action at this time.
0 commit comments