File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
src/main/java/com/blockscore/common Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ === 4.0.1 2017-06-09
2+
3+ - Fixed searchWatchlists bug that would send null parameters.
4+
15=== 4.0.0 2015-06-04
26
37- Added support for version 4 of the API
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
1616<dependency >
1717 <groupId >com.blockscore</groupId >
1818 <artifactId >blockscore-java</artifactId >
19- <version >4.0.0 </version >
19+ <version >4.0.1 </version >
2020</dependency >
2121```
2222
@@ -25,7 +25,7 @@ Add this dependency to your project's POM:
2525Add this dependency to your project's build file:
2626
2727``` groovy
28- compile 'com.blockscore:blockscore-java:4.0.0 '
28+ compile 'com.blockscore:blockscore-java:4.0.1 '
2929```
3030
3131### Others
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ targetCompatibility = 1.7
2121
2222group = " com.blockscore"
2323archivesBaseName = " blockscore-java"
24- version = " 4.0.0 "
24+ version = " 4.0.1 "
2525
2626repositories {
2727 jcenter()
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public final class Constants {
99 public static final String AUTHORIZATION_HEADER = "Authorization" ;
1010 public static final String ACCEPT_HEADER = "Accept" ;
1111 public static final String BLOCKSCORE_DOMAIN = "https://api.blockscore.com" ;
12- public static final String USER_AGENT = "blockscore-java/4.0.0 (https://github.com/BlockScore/blockscore-java)" ;
12+ public static final String USER_AGENT = "blockscore-java/4.0.1 (https://github.com/BlockScore/blockscore-java)" ;
1313
1414 private static final String VERSION_CODE = "4" ;
1515 private static final String ACCEPT_CONTENTS = "application/vnd.blockscore+json;version=%s" ;
You can’t perform that action at this time.
0 commit comments