Skip to content

Commit 06d2812

Browse files
Version Bump v4.2.0: Allow setting both and parameters
1 parent 87675ee commit 06d2812

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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+
## [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+
611
## [4.1.1] - 2016-10-11
712
### Added
813
- [Pull #23](https://github.com/sendgrid/java-http-client/pull/23): Moved Mockito to test dependency.

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-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
9393
```
9494

9595
<a name="understanding-the-codebase"></a>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
3939
...
4040
dependencies {
4141
...
42-
compile 'com.sendgrid:java-http-client:4.1.1'
42+
compile 'com.sendgrid:java-http-client:4.2.0'
4343
}
4444
4545
repositories {
@@ -54,7 +54,7 @@ repositories {
5454
<dependency>
5555
<groupId>com.sendgrid</groupId>
5656
<artifactId>java-http-client</artifactId>
57-
<version>4.1.1</version>
57+
<version>4.2.0</version>
5858
</dependency>
5959
```
6060

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'signing'
1717
apply plugin: 'com.github.johnrengelman.shadow'
1818

1919
group = 'com.sendgrid'
20-
version = '4.1.1'
20+
version = '4.2.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>4.1.1</version>
14+
<version>4.2.0</version>
1515
<url>https://github.com/sendgrid/java-http-client</url>
1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)