Skip to content

Commit

Permalink
Merge pull request #441 from omise/release-v3.2.0
Browse files Browse the repository at this point in the history
Release v3.2.0
  • Loading branch information
aashishgurung authored Aug 22, 2023
2 parents a399ac0 + 5a2cb1e commit 35bc747
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## [v3.2.0 _(Aug, 22, 2023)_](https://github.com/omise/omise-magento/releases/tag/v3.2.0)
- Enabled AlipayHK, Kakaopay and Touch 'N Go for Thailand PSP. (PR: [#440](https://github.com/omise/omise-magento/pull/440))

## [v3.1.2 _(Jun, 23, 2023)_](https://github.com/omise/omise-magento/releases/tag/v3.1.2)
- Fetch the same number of orders as the value of refresh counter in the cron job. (PR: [#437](https://github.com/omise/omise-magento/pull/437))

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"email": "[email protected]"
}
],
"version": "3.1.2",
"version": "3.2.0",
"minimum-stability": "stable",
"type": "magento2-module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Omise_Payment" setup_version="3.1.2">
<module name="Omise_Payment" setup_version="3.2.0">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Payment"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define(
isPlaceOrderActionAllowed: ko.observable(quote.billingAddress() != null),

code: 'omise_offsite_alipayhk',
restrictedToCurrencies: ['sgd']
restrictedToCurrencies: ['sgd', 'thb']
});
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define(
isPlaceOrderActionAllowed: ko.observable(quote.billingAddress() != null),

code: 'omise_offsite_kakaopay',
restrictedToCurrencies: ['sgd']
restrictedToCurrencies: ['sgd', 'thb']
});
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define(
isPlaceOrderActionAllowed: ko.observable(quote.billingAddress() != null),

code: 'omise_offsite_touchngo',
restrictedToCurrencies: ['sgd', 'myr'],
restrictedToCurrencies: ['sgd', 'myr', 'thb'],
logo: {
file: "images/touchngo.png",
width: "30",
Expand Down

0 comments on commit 35bc747

Please sign in to comment.