Skip to content

Commit

Permalink
Updated Changelog and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
arao6 committed May 5, 2021
1 parent 1eadd90 commit 8e99087
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
1.7.3
-----------------
- Added clientUserId filter

1.7.2
-----------------
- Added Reject reasons for Multipart upload document functionality
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Installation
<dependency>
<groupId>com.hyperwallet</groupId>
<artifactId>sdk</artifactId>
<version>1.7.2</version>
<version>1.7.3</version>
</dependency>
```

**Gradle**
```
compile 'com.hyperwallet:sdk:1.7.2'
compile 'com.hyperwallet:sdk:1.7.3'
```

Documentation
Expand All @@ -44,7 +44,7 @@ API Overview
To write an app using the SDK

* Register for a sandbox account and get your username, password and program token at the [Hyperwallet Program Portal](https://portal.hyperwallet.com).
* Add dependency `com.hyperwallet:sdk:1.7.2` to your `pom.xml` (or `build.gradle`).
* Add dependency `com.hyperwallet:sdk:1.7.3` to your `pom.xml` (or `build.gradle`).

* Create a instance of the Hyperwallet Client (with username, password and program token)
```java
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/hyperwallet/clientsdk/Hyperwallet.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class Hyperwallet {

public static final String VERSION = "1.7.2";
public static final String VERSION = "1.7.3";

private final HyperwalletApiClient apiClient;
private final String programToken;
Expand Down

0 comments on commit 8e99087

Please sign in to comment.