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.
3
3
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## [ 4.2.0] - 2017-10-30
7
+ ### Added
8
+ - [ Pull #22 ] ( https://github.com/sendgrid/java-http-client/pull/22 ) : Allow setting both ` apache http client ` and ` test ` parameters
9
+ - BIG thanks to [ Maxim Novak] ( https://github.com/maximn ) for the pull request!
10
+
6
11
## [ 4.1.1] - 2016-10-11
7
12
### Added
8
13
- [ Pull #23 ] ( https://github.com/sendgrid/java-http-client/pull/23 ) : Moved Mockito to test dependency.
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-4.1.1 -jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.1.1 -jar.jar:. Example
92
+ javac -classpath {path_to}/sendgrid-java-http-client-4.2.0 -jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.2.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 @@ -39,7 +39,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
39
39
...
40
40
dependencies {
41
41
...
42
- compile 'com.sendgrid:java-http-client:4.1.1 '
42
+ compile 'com.sendgrid:java-http-client:4.2.0 '
43
43
}
44
44
45
45
repositories {
@@ -54,7 +54,7 @@ repositories {
54
54
<dependency >
55
55
<groupId >com.sendgrid</groupId >
56
56
<artifactId >java-http-client</artifactId >
57
- <version >4.1.1 </version >
57
+ <version >4.2.0 </version >
58
58
</dependency >
59
59
```
60
60
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'signing'
17
17
apply plugin : ' com.github.johnrengelman.shadow'
18
18
19
19
group = ' com.sendgrid'
20
- version = ' 4.1.1 '
20
+ version = ' 4.2.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 >4.1.1 </version >
14
+ <version >4.2.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