File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
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.1.1] - 2016-10-11
7
+ ### Added
8
+ - [ Pull #23 ] ( https://github.com/sendgrid/java-http-client/pull/23 ) : Moved Mockito to test dependency.
9
+ - BIG thanks to [ Joseph Lust] ( https://github.com/twistedpair ) for the pull request!
10
+
6
11
## [ 4.1.0] - 2016-10-11
7
12
### Added
8
13
- [ Pull #17 ] ( https://github.com/sendgrid/java-http-client/pull/17 ) : Assign server response outside try block
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ We welcome direct contributions to the java-http-client code base. Thank you!
64
64
65
65
##### Prerequisites #####
66
66
67
- - Java version Oracle JDK 7, 8 or OpenJDK 7
67
+ - Java version Oracle JDK 8 or OpenJDK 7
68
68
- Please see [ build.gradle] ( https://github.com/sendgrid/java-http-client/blob/master/build.gradle )
69
69
70
70
##### Initial setup: #####
@@ -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.0 -jar.jar:. Example.java && java -classpath {path_to}/sendgrid-java-http-client-4.1.0 -jar.jar:. Example
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
93
93
```
94
94
95
95
<a name =" understanding_the_codebase " ></a >
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
12
12
13
13
## Prerequisites
14
14
15
- - Java version Oracle JDK 7, 8 or OpenJDK 7
15
+ - Java version Oracle JDK 8 or OpenJDK 7
16
16
17
17
## Install via Maven w/ Gradle
18
18
19
19
``` groovy
20
20
...
21
21
dependencies {
22
22
...
23
- compile 'com.sendgrid:java-http-client:4.1.0 '
23
+ compile 'com.sendgrid:java-http-client:4.1.1 '
24
24
}
25
25
26
26
repositories {
@@ -35,15 +35,15 @@ repositories {
35
35
<dependency >
36
36
<groupId >com.sendgrid</groupId >
37
37
<artifactId >java-http-client</artifactId >
38
- <version >3.0.0 </version >
38
+ <version >4.1.1 </version >
39
39
</dependency >
40
40
```
41
41
42
42
` mvn install `
43
43
44
44
## Install via Fat Jar
45
45
46
- [ Download ] ( http://repo1.maven.org/maven2/ com/sendgrid /java-http-client/4.1.0/ java-http-client-4.1.0-jar .jar )
46
+ [ sendgrid-java-latest.jar ] ( http://dx.sendgrid. com/downloads /java-http-client/java-http-client-latest .jar )
47
47
48
48
## Dependencies
49
49
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.0 '
20
+ version = ' 4.1.1 '
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.0 </version >
14
+ <version >4.1.1 </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