Skip to content

Commit

Permalink
Version Bump v4.0.0: Pull #14, fixed #12 Make response have private v…
Browse files Browse the repository at this point in the history
…ariables
  • Loading branch information
thinkingserious committed Oct 11, 2016
1 parent bca0cef commit de04d12
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

<a name="understanding_the_codebase"></a>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<packaging>jar</packaging>
<name>A simple HTTP client</name>
<description>HTTP REST client, simplified for Java</description>
<version>3.0.0</version>
<version>4.0.0</version>
<url>https://github.com/sendgrid/java-http-client</url>
<licenses>
<license>
Expand Down

0 comments on commit de04d12

Please sign in to comment.