Skip to content

Commit

Permalink
Release of 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit authored Jun 1, 2021
1 parent 1594510 commit 0af072d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.1.0] - 2021-06-01
### Changed
- Deprecation of duplicate method TransactionResponse->getPaymentLink().

### Added
- Add support for [API token endpoint](https://docs.multisafepay.com/api/#generate-an-api-token)
- Add class ShippingItem in OrderRequest which can be used for simpler way to specify a shipping item in the [shopping cart](https://docs.multisafepay.com/api/#shopping-cart-items)
- Add [POST notification validation](https://docs.multisafepay.com/faq/api/notification-url/#validating-post-notifications)

### Fixed
- Fix bug when requesting transaction details for an order registered without a ShoppingCart returning InvalidArgumentException with clear error message

## [5.0.1] - 2021-03-11
### Changed
- getGateways will now include all merchant enabled gift cards by default
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "MultiSafepay PHP SDK",
"type": "library",
"license": "MIT",
"version": "5.0.1",
"version": "5.1.0",
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/Util/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
class Version
{
const SDK_VERSION = '5.0.1';
const SDK_VERSION = '5.1.0';

/**
* @var Version
Expand Down

0 comments on commit 0af072d

Please sign in to comment.