Skip to content

Commit

Permalink
Version Bump 3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJr committed May 27, 2021
1 parent 098b9b4 commit 0179fa2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## [3.5.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 PHP SDK.

Example :

```php
$payOutGet = $this->_api->PayOuts->GetBankwire($payOut->Id);
// where $payOut->Id 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).

### Accepted PRs

- Improved documentation around ubo declaration reason
- ResponseError object improvement

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

Expand Down
2 changes: 1 addition & 1 deletion MangoPay/Libraries/RestTool.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
class RestTool
{
const VERSION = '3.4.0';
const VERSION = '3.5.0';

/**
* Root/parent instance that holds the OAuthToken and Configuration instance
Expand Down

0 comments on commit 0179fa2

Please sign in to comment.