File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
3
3
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## [ 4.0.0] - 2016-10-11
7
+ ### BREAKING Change
8
+ - [ Pull #14 ] ( https://github.com/sendgrid/java-http-client/pull/14 ) : Make response have private variables
9
+ - Fixed [ Issue #12 ] ( https://github.com/sendgrid/java-http-client/issues/12 ) : The public Response variables should be private
10
+ - The breaking change is that variables that were public are now private and accessable only via getters and setters
11
+ - BIG thanks to [ Diego Camargo] ( https://github.com/belfazt ) for the pull request!
12
+
6
13
## [ 3.0.0] - 2016-10-06
7
14
### BREAKING Change
8
15
- [ Pull #15 ] ( https://github.com/sendgrid/java-http-client/pull/15 ) : Update the request object with sensible defaults and access methods
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ source ./sendgrid.env
89
89
``` bash
90
90
./gradlew build
91
91
cd examples
92
- 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
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
93
93
```
94
94
95
95
<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/
20
20
...
21
21
dependencies {
22
22
...
23
- compile 'com.sendgrid:java-http-client:3 .0.0'
23
+ compile 'com.sendgrid:java-http-client:4 .0.0'
24
24
}
25
25
26
26
repositories {
@@ -43,7 +43,7 @@ repositories {
43
43
44
44
## Install via Fat Jar
45
45
46
- [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/3 .0.0/java-http-client-3 .0.0-jar.jar )
46
+ [ Download] ( http://repo1.maven.org/maven2/com/sendgrid/java-http-client/4 .0.0/java-http-client-4 .0.0-jar.jar )
47
47
48
48
## Dependencies
49
49
@@ -112,7 +112,7 @@ source ./sendgrid.env
112
112
``` bash
113
113
mvn package
114
114
cd examples
115
- 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
115
+ 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
116
116
```
117
117
118
118
## Roadmap
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'maven'
17
17
apply plugin : ' signing'
18
18
19
19
group = ' com.sendgrid'
20
- version = ' 3 .0.0'
20
+ version = ' 4 .0.0'
21
21
ext. packaging = ' jar'
22
22
23
23
allprojects {
Original file line number Diff line number Diff line change 11
11
<packaging >jar</packaging >
12
12
<name >A simple HTTP client</name >
13
13
<description >HTTP REST client, simplified for Java</description >
14
- <version >3 .0.0</version >
14
+ <version >4 .0.0</version >
15
15
<url >https://github.com/sendgrid/java-http-client</url >
16
16
<licenses >
17
17
<license >
You can’t perform that action at this time.
0 commit comments