Skip to content

Commit

Permalink
Merge pull request #5 from sreekesefingent/prestashop_target_1_4_2
Browse files Browse the repository at this point in the history
The module has been updated to API version 81
  • Loading branch information
jineshpv authored Aug 6, 2024
2 parents c9b03b7 + febf0ef commit 1b23c62
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.4.2] - 2024-07-06
### Changed
- The module has been updated to API version 81.

## [1.4.1] - 2024-02-26
### Changed
- The module has been updated to API version 78.
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ Version v1.4.1
- Added nyholm/psr7 package.
- User will be notified, if there is a new plugin version available on Git Hub.

Version v1.4.2
- The module has been updated to API version 81.

## Feature Support

PrestaShop Mastercard Payment Gateway Service module supports the following list of features:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastercard/mastercard",
"version": "1.4.1",
"version": "1.4.2",
"description": "Mastercard Payment Gateway Services module for Prestashop",
"type": "prestashop-module",
"require": {
Expand Down
4 changes: 2 additions & 2 deletions mastercard.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
class Mastercard extends PaymentModule
{
const PAYMENT_CODE = 'MPGS';
const MPGS_API_VERSION = '78';
const MPGS_API_VERSION = '81';
const MPGS_3DS_LIB_VERSION = '1.3.0';
const PAYMENT_CHECKOUT_SESSION_PURCHASE = 'PURCHASE';
const PAYMENT_CHECKOUT_SESSION_AUTHORIZE = 'AUTHORIZE';
Expand Down Expand Up @@ -67,7 +67,7 @@ public function __construct()
$this->module_key = '5e026a47ceedc301311e969c872f8d41';
$this->name = 'mastercard';
$this->tab = 'payments_gateways';
$this->version = '1.4.1';
$this->version = '1.4.2';
if (!defined('MPGS_VERSION')) {
define('MPGS_VERSION', $this->version);
}
Expand Down

0 comments on commit 1b23c62

Please sign in to comment.