Skip to content

Commit

Permalink
Merge pull request #5 from BlockScore/bump/version
Browse files Browse the repository at this point in the history
Bump version to 4.0.1
  • Loading branch information
dgollahon authored Jun 9, 2017
2 parents 4bf6417 + 99fac27 commit 686cab5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
=== 4.0.1 2017-06-09

- Fixed searchWatchlists bug that would send null parameters.

=== 4.0.0 2015-06-04

- Added support for version 4 of the API
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.blockscore</groupId>
<artifactId>blockscore-java</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
</dependency>
```

Expand All @@ -25,7 +25,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile 'com.blockscore:blockscore-java:4.0.0'
compile 'com.blockscore:blockscore-java:4.0.1'
```

### Others
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ targetCompatibility = 1.7

group = "com.blockscore"
archivesBaseName = "blockscore-java"
version = "4.0.0"
version = "4.0.1"

repositories {
jcenter()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/blockscore/common/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public final class Constants {
public static final String AUTHORIZATION_HEADER = "Authorization";
public static final String ACCEPT_HEADER = "Accept";
public static final String BLOCKSCORE_DOMAIN = "https://api.blockscore.com";
public static final String USER_AGENT = "blockscore-java/4.0.0 (https://github.com/BlockScore/blockscore-java)";
public static final String USER_AGENT = "blockscore-java/4.0.1 (https://github.com/BlockScore/blockscore-java)";

private static final String VERSION_CODE = "4";
private static final String ACCEPT_CONTENTS = "application/vnd.blockscore+json;version=%s";
Expand Down

0 comments on commit 686cab5

Please sign in to comment.