Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
=== 4.0.2 2017-07-05

- Fixed Address deserialization bug.

=== 4.0.1 2017-06-09

- Fixed searchWatchlists bug that would send null parameters.
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.1</version>
<version>4.0.2</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.1'
compile 'com.blockscore:blockscore-java:4.0.2'
```

### 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.1"
version = "4.0.2"

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.1 (https://github.com/BlockScore/blockscore-java)";
public static final String USER_AGENT = "blockscore-java/4.0.2 (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