From de04d121525d8ca4efbbaeb73fda5545776f4991 Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Tue, 11 Oct 2016 16:26:45 -0700 Subject: [PATCH] Version Bump v4.0.0: Pull #14, fixed #12 Make response have private variables --- CHANGELOG.md | 7 +++++++ CONTRIBUTING.md | 2 +- README.md | 6 +++--- build.gradle | 2 +- pom.xml | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 183b6fe..ee8865d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.0.0] - 2016-10-11 +### BREAKING Change +- [Pull #14](https://github.com/sendgrid/java-http-client/pull/14): Make response have private variables +- Fixed [Issue #12](https://github.com/sendgrid/java-http-client/issues/12): The public Response variables should be private +- The breaking change is that variables that were public are now private and accessable only via getters and setters +- BIG thanks to [Diego Camargo](https://github.com/belfazt) for the pull request! + ## [3.0.0] - 2016-10-06 ### BREAKING Change - [Pull #15](https://github.com/sendgrid/java-http-client/pull/15): Update the request object with sensible defaults and access methods diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e01faf..848887f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,7 +89,7 @@ source ./sendgrid.env ```bash ./gradlew build cd examples -javac -classpath {path_to}/sendgrid-java-http-client-3.0.0-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-3.0.0-jar.jar:. Example +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 ``` diff --git a/README.md b/README.md index 1bdca0f..5212a44 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/ ... dependencies { ... - compile 'com.sendgrid:java-http-client:3.0.0' + compile 'com.sendgrid:java-http-client:4.0.0' } repositories { @@ -43,7 +43,7 @@ repositories { ## Install via Fat Jar -[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/3.0.0/java-http-client-3.0.0-jar.jar) +[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/4.0.0/java-http-client-4.0.0-jar.jar) ## Dependencies @@ -112,7 +112,7 @@ source ./sendgrid.env ```bash mvn package cd examples -javac -classpath {path_to}/sendgrid-java-http-client-3.0.0-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-3.0.0-jar.jar:. Example +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 ``` ## Roadmap diff --git a/build.gradle b/build.gradle index e9d7b61..050d7a1 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'com.sendgrid' -version = '3.0.0' +version = '4.0.0' ext.packaging = 'jar' allprojects { diff --git a/pom.xml b/pom.xml index 807597c..5bc06cb 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ jar A simple HTTP client HTTP REST client, simplified for Java - 3.0.0 + 4.0.0 https://github.com/sendgrid/java-http-client