diff --git a/languages/checkout-com-unified-payments-api.pot b/languages/checkout-com-unified-payments-api.pot index 014117c4..a5efc657 100644 --- a/languages/checkout-com-unified-payments-api.pot +++ b/languages/checkout-com-unified-payments-api.pot @@ -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.18\n" +"Project-Id-Version: Checkout.com Payment Gateway 4.4.19\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/checkout-com-unified-payments-api\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-01-11T18:52:22+05:30\n" +"POT-Creation-Date: 2024-01-17T18:39:00+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" @@ -485,7 +485,7 @@ msgid "An error has occurred while processing your cancel request. " msgstr "" #. translators: 1: Payment ID, 2: Webhook ID. -#: includes/class-wc-gateway-checkout-com-cards.php:1027 +#: includes/class-wc-gateway-checkout-com-cards.php:1031 msgid "Order payment Id (%1$s) does not match that of the webhook (%2$s)" msgstr "" diff --git a/readme.txt b/readme.txt index 2b8673ee..549a2982 100644 --- a/readme.txt +++ b/readme.txt @@ -171,6 +171,10 @@ 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.19 17th Jan 2024 +- **[tweak]** Add new Webhook event types +- **[fix]** PHP notices and warnings + v4.4.18 11th Jan 2024 - **[tweak]** Apple Pay button condition to show on checkout page - **[fix]** Idempotency key not working after failed payment request diff --git a/woocommerce-gateway-checkout-com.php b/woocommerce-gateway-checkout-com.php index 18f7a480..f3e91b2d 100644 --- a/woocommerce-gateway-checkout-com.php +++ b/woocommerce-gateway-checkout-com.php @@ -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.18 + * Version: 4.4.19 * Requires at least: 5.0 - * Stable tag: 4.4.18 + * Stable tag: 4.4.19 * Tested up to: 6.4.1 * WC tested up to: 8.3.1 * Requires PHP: 7.3 @@ -24,7 +24,7 @@ /** * Constants. */ -define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.4.18' ); +define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.4.19' ); 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__ ) ) );