Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: version to 4.4.17 and changelog #360

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions languages/checkout-com-unified-payments-api.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the Checkout.com Payment Gateway plugin.
msgid ""
msgstr ""
"Project-Id-Version: Checkout.com Payment Gateway 4.4.16\n"
"Project-Id-Version: Checkout.com Payment Gateway 4.4.17\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/checkout-com-unified-payments-api\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-11-24T11:00:25+05:30\n"
"POT-Creation-Date: 2023-12-04T19:06:45+05:30\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.9.0\n"
"X-Domain: checkout-com-unified-payments-api\n"
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ http://example.com/?wc-api=wc_checkoutcom_webhook
After the plugin has been configured, customers will be able to choose Checkout.com as a valid payment method.

== Changelog ==
v4.4.17 4th Dec 2023
- **[fix]** Fix incorrect use of method

v4.4.16 24th Nov 2023
- **[tweak]** WC HPOS related fixes
- **[tweak]** Add new configuration section to add ABC fallback account for refund process
Expand All @@ -185,7 +188,7 @@ v4.4.14 20th March 2023
v4.4.13 15th March 2023
- **[tweak]** Add payment retry if 3ds redirection link is expired with idempotency key

v4.4.12 3th March 2023
v4.4.12 3rd March 2023
- **[tweak]** Update style of co-badged cards choice option
- **[tweak]** Implement idempotency key for payment request to avoid duplicate payment
- **[fix]** Credit card input filed not showing on small screen device
Expand Down
6 changes: 3 additions & 3 deletions woocommerce-gateway-checkout-com.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* Description: Extends WooCommerce by Adding the Checkout.com Gateway.
* Author: Checkout.com
* Author URI: https://www.checkout.com/
* Version: 4.4.16
* Version: 4.4.17
* Requires at least: 5.0
* Stable tag: 4.4.16
* Stable tag: 4.4.17
* Tested up to: 6.4.1
* WC tested up to: 8.3.1
* Requires PHP: 7.3
Expand All @@ -24,7 +24,7 @@
/**
* Constants.
*/
define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.4.16' );
define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.4.17' );
define( 'WC_CHECKOUTCOM_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
define( 'WC_CHECKOUTCOM_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );

Expand Down