Skip to content

Commit 2828ad0

Browse files
authoredMar 8, 2017
Merge pull request #58 from SparkPost/feature/httpclient_4_5_3_compat_issue57
Feature/httpclient 4 5 3 compat issue57
2 parents b7fcbf4 + a183530 commit 2828ad0

File tree

56 files changed

+1727
-275
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1727
-275
lines changed
 

‎README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Use this library in Java applications to easily access the SparkPost Email API i
1010

1111
## Version Compatibility Note
1212

13+
### Version 0.6.2 -> 0.6.3
14+
15+
Due to [issue 57](https://github.com/SparkPost/java-sparkpost/issues/57) and to maintain compatibility with old and new version of Apache HTTP Client `SPARKPOST_BASE_URL` must not end with a `/` slash.
16+
1317
### Version 0.12 -> 0.13
1418

1519
Although we try to maintain library backward compatibility this migration may require some minor changes to your code. Substitution data was changed from `Map<String, String>` to `Map<String, Object>`. Most client code will just need to change their map to this new signature.
@@ -23,7 +27,7 @@ The SparkPost Java Library is available in this [Maven Repository](http://maven.
2327
<dependency>
2428
<groupId>com.sparkpost</groupId>
2529
<artifactId>sparkpost-lib</artifactId>
26-
<version>0.16.2</version>
30+
<version>0.17</version>
2731
</dependency>
2832
```
2933

‎apps/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.sparkpost</groupId>
55
<artifactId>sparkpost</artifactId>
6-
<version>0.16.2</version>
6+
<version>0.17</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>apps</artifactId>

0 commit comments

Comments
 (0)