Skip to content

Commit

Permalink
Merge pull request #415 from omise/release-v5.5.1
Browse files Browse the repository at this point in the history
Release v5.5.1
  • Loading branch information
aashishgurung committed Nov 2, 2023
2 parents 65f2b79 + d350066 commit 1e39ddd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
11 changes: 1 addition & 10 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# Order is important. The last matching pattern has the most precedence.
# So if a pull request only touches javascript files, only these owners
# will be requested to review.
# example: *.js @octocat @github/js

# These owners will be the default owners for everything in the repo.
* @aashishgurung @ajzkk
* @omise/maintainers
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

### [v5.5.1 _(Nov 2, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.5.1)
- Fix mobile banking issue. (PR [#413](https://github.com/omise/omise-woocommerce/pull/413))

### [v5.5.0 _(Oct 17, 2023)_](https://github.com/omise/omise-woocommerce/releases/tag/v5.5.0)
- Added dynamic webhook. (PR [#407](https://github.com/omise/omise-woocommerce/pull/407))
- Add QR expires countdown for PromptPay. (PR [#408](https://github.com/omise/omise-woocommerce/pull/408))
Expand Down
2 changes: 1 addition & 1 deletion includes/gateway/class-omise-payment-mobilebanking.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function charge($order_id, $order)
);

$requestData['source'] = array_merge($requestData['source'], [
$requestData['platform_type'] = Omise_Util::get_platform_type(wc_get_user_agent())
'platform_type' => Omise_Util::get_platform_type(wc_get_user_agent())
]);
return OmiseCharge::create($requestData);
}
Expand Down
4 changes: 2 additions & 2 deletions omise-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Opn Payments
* Plugin URI: https://www.omise.co/woocommerce
* Description: Opn Payments is a WordPress plugin designed specifically for WooCommerce. The plugin adds support for Opn Payments Payment Gateway's payment methods to WooCommerce.
* Version: 5.5.0
* Version: 5.5.1
* Author: Opn Payments and contributors
* Author URI: https://github.com/omise/omise-woocommerce/graphs/contributors
* Text Domain: omise
Expand All @@ -22,7 +22,7 @@ class Omise
*
* @var string
*/
public $version = '5.5.0';
public $version = '5.5.1';

/**
* The Omise Instance.
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Opn Payments
Tags: opn payments, payment, payment gateway, woocommerce plugin, omise, opn, installment, internet banking, alipay, paynow, truemoney wallet, woocommerce payment
Requires at least: 4.3.1
Tested up to: 6.3.2
Stable tag: 5.5.0
Stable tag: 5.5.1
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -34,7 +34,11 @@ From there:

== Changelog ==

= 5.5.0 ==
= 5.5.1 =

- Fix mobile banking issue. (PR [#413](https://github.com/omise/omise-woocommerce/pull/413))

= 5.5.0 =

- Added dynamic webhook. (PR [#407](https://github.com/omise/omise-woocommerce/pull/407))
- Add QR expires countdown for PromptPay. (PR [#408](https://github.com/omise/omise-woocommerce/pull/408))
Expand Down

0 comments on commit 1e39ddd

Please sign in to comment.