Skip to content

Commit

Permalink
Updated changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
arao6 committed Jun 10, 2021
1 parent b787f59 commit 4b6af87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Changelog
=========
2.2.4
2.2.5
-----------------
- Fix for multipart Upload

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Coverage Status](https://coveralls.io/repos/github/hyperwallet/java-sdk/badge.svg?branch=master)](https://coveralls.io/github/hyperwallet/java-sdk?branch=master)
[![Maven Central](https://img.shields.io/maven-central/v/com.hyperwallet/sdk.svg)]()

Hyperwallet REST SDK v2.2.4
Hyperwallet REST SDK v2.2.5
===========================

A library to manage users, transfer methods and payments through the Hyperwallet v4 API.
Expand All @@ -22,13 +22,13 @@ Installation
<dependency>
<groupId>com.hyperwallet</groupId>
<artifactId>sdk</artifactId>
<version>2.2.4</version>
<version>2.2.5</version>
</dependency>
```

**Gradle**
```
compile 'com.hyperwallet:sdk:2.2.4'
compile 'com.hyperwallet:sdk:2.2.5'
```

Documentation
Expand All @@ -44,7 +44,7 @@ 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:2.2.4` to your `pom.xml` (or `build.gradle`).
* Add dependency `com.hyperwallet:sdk:2.2.5` to your `pom.xml` (or `build.gradle`).


* Create a instance of the Hyperwallet Client (with username, password and program token)
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 = "2.2.4";
public static final String VERSION = "2.2.5";
private final HyperwalletApiClient apiClient;
private final String programToken;
private final String url;
Expand Down

0 comments on commit 4b6af87

Please sign in to comment.