Skip to content

Commit 686cab5

Browse files
authored
Merge pull request #5 from BlockScore/bump/version
Bump version to 4.0.1
2 parents 4bf6417 + 99fac27 commit 686cab5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:
2525
Add 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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ targetCompatibility = 1.7
2121

2222
group = "com.blockscore"
2323
archivesBaseName = "blockscore-java"
24-
version = "4.0.0"
24+
version = "4.0.1"
2525

2626
repositories {
2727
jcenter()

src/main/java/com/blockscore/common/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)