Skip to content

Commit

Permalink
Merge pull request #9 from BlockScore/bump/version
Browse files Browse the repository at this point in the history
Bump version to 4.0.2
  • Loading branch information
dgollahon authored Jul 5, 2017
2 parents 9f52703 + 04c33df commit 6548fac
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.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

0 comments on commit 6548fac

Please sign in to comment.