Skip to content

Commit

Permalink
Version bump 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJr committed May 27, 2021
1 parent a4e919d commit d721ee8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## [2.15.0] - 2021-05-27
## Added

### Instant payment

Mangopay introduces the instant payment mode. It allows payouts (transfer from wallet to user bank account) to be processed within 25 seconds, rather than the 48 hours for a standard payout.

You can now use this new type of payout with the Java SDK.

Example :

```java
PayOut getPayOut = this.api.getPayOutApi().getBankwire(payOut.getId());
// where payOut.getId() is the id of an existing payout
```

Please note that this feature must be authorized and activated by MANGOPAY. More information [here](https://docs.mangopay.com/guide/instant-payment-payout).

### List transactions for a mandate

The [endpoint](https://docs.mangopay.com/endpoints/v2.01/transactions#e993_list-transactions-for-a-mandate) to list all transactions linked to mandate has been added to the SDK.

## [2.14.0] - 2021-05-11
## Fixed

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ repositories {
}
dependencies {
compile 'com.mangopay:mangopay2-java-sdk:2.14.0'
compile 'com.mangopay:mangopay2-java-sdk:2.15.0'
}
```

```xml
<dependency>
<groupId>com.mangopay</groupId>
<artifactId>mangopay2-java-sdk</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ task javadocJar(type: Jar) {
}

group = 'com.mangopay'
version = '2.14.0'
version = '2.15.0'
sourceCompatibility = '1.7'

publishing {
Expand All @@ -48,7 +48,7 @@ publishing {
pom {
groupId 'com.mangopay'
artifactId 'mangopay2-java-sdk'
version '2.14.0'
version '2.15.0'

from(components.java)

Expand Down

0 comments on commit d721ee8

Please sign in to comment.