Skip to content

Commit 66cf550

Browse files
Version Bump v3.0.0: BREAKING CHANGE #15 Update the request object with sensible defaults and access methods
1 parent 433326b commit 66cf550

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
## [3.0.0] - 2016-10-06
7+
### BREAKING Change
8+
- [Pull #15](https://github.com/sendgrid/java-http-client/pull/15): Update the request object with sensible defaults and access methods
9+
- Fixes [Issue #13](https://github.com/sendgrid/java-http-client/issues/13): Update the Request object with sensible defaults and access methods
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+
613
## [2.3.4] - 2016-08-09
714
### Fix
815
- [Pull #7](https://github.com/sendgrid/java-http-client/pull/7): Fix Response Charset to UTF-8

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ source ./sendgrid.env
8989
```bash
9090
./gradlew build
9191
cd examples
92-
javac -classpath {path_to}/sendgrid-java-http-client-2.3.4-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-2.3.4-jar.jar:. Example
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
9393
```
9494

9595
<a name="understanding_the_codebase"></a>

README.md

Lines changed: 4 additions & 4 deletions
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.4'
23+
compile 'com.sendgrid:java-http-client:3.0.0'
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.4</version>
38+
<version>3.0.0</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.4/java-http-client-2.3.4-jar.jar)
46+
[Download](http://repo1.maven.org/maven2/com/sendgrid/java-http-client/3.0.0/java-http-client-3.0.0-jar.jar)
4747

4848
## Dependencies
4949

@@ -112,7 +112,7 @@ source ./sendgrid.env
112112
```bash
113113
mvn package
114114
cd examples
115-
javac -classpath {path_to}/sendgrid-java-http-client-2.3.4-jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-2.3.4-jar.jar:. Example
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
116116
```
117117

118118
## Roadmap

build.gradle

Lines changed: 1 addition & 1 deletion
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.4'
20+
version = '3.0.0'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

Lines changed: 1 addition & 1 deletion
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.4</version>
14+
<version>3.0.0</version>
1515
<url>https://github.com/sendgrid/java-http-client</url>
1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)