Skip to content

Commit

Permalink
Merge pull request #193 from woocommerce/release/1.6.1
Browse files Browse the repository at this point in the history
Release/1.6.1
  • Loading branch information
dkotter authored Jan 8, 2024
2 parents c958653 + 5a94fc1 commit 2260ac3
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 12 deletions.
12 changes: 10 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
*** PayFast Changelog ***

= 1.6.1 - TBD =
* Dev - Declare compatibility with WooCommerce Blocks
= 1.6.1 - 2024-01-08 =
* Add - Readme.md file for e2e tests.
* Dev - Declare compatibility with WooCommerce Blocks.
* Dev - Declare compatibility with Product Editor.
* Dev - Updated the main file of the plugin to match the plugin's slug.
* Dev - Bump PHP minimum supported version to 7.4.
* Dev - Bump WooCommerce "tested up to" version 8.4.
* Dev - Bump WooCommerce minimum supported version to 8.2.
* Dev - Resolve coding standards issues.
* Tweak - Bump PHP "tested up to" version 8.3.

= 1.6.0 - 2023-11-22 =
* Dev - Add Playwright end-to-end tests.
Expand Down
2 changes: 1 addition & 1 deletion gateway-payfast.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Backwards compat.
*
* @since x.x.x
* @since 1.6.1
* @package WooCommerce Gateway Payfast
*/

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woocommerce-gateway-payfast",
"title": "WooCommerce Gateway Payfast",
"version": "1.6.0",
"version": "1.6.1",
"license": "GPL-3.0",
"homepage": "https://wordpress.org/plugins/woocommerce-payfast-gateway/",
"repository": {
Expand Down
14 changes: 11 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: credit card, payfast, payment request, woocommerce, automattic
Requires at least: 6.2
Tested up to: 6.4
Requires PHP: 7.4
Stable tag: 1.6.0
Stable tag: 1.6.1
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -38,8 +38,16 @@ If you get stuck, you can ask for help in the Plugin Forum.

== Changelog ==

= 1.6.1 - TBD =
* Dev - Declare compatibility with WooCommerce Blocks
= 1.6.1 - 2024-01-08 =
* Add - Readme.md file for e2e tests.
* Dev - Declare compatibility with WooCommerce Blocks.
* Dev - Declare compatibility with Product Editor.
* Dev - Updated the main file of the plugin to match the plugin's slug.
* Dev - Bump PHP minimum supported version to 7.4.
* Dev - Bump WooCommerce "tested up to" version 8.4.
* Dev - Bump WooCommerce minimum supported version to 8.2.
* Dev - Resolve coding standards issues.
* Tweak - Bump PHP "tested up to" version 8.3.

= 1.6.0 - 2023-11-22 =
* Dev - Add Playwright end-to-end tests.
Expand Down
6 changes: 3 additions & 3 deletions woocommerce-gateway-payfast.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Receive payments using the South African Payfast payments provider.
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Version: 1.6.0
* Version: 1.6.1
* Requires at least: 6.2
* Tested up to: 6.4
* WC requires at least: 8.2
Expand All @@ -18,7 +18,7 @@

defined( 'ABSPATH' ) || exit;

define( 'WC_GATEWAY_PAYFAST_VERSION', '1.6.0' ); // WRCS: DEFINED_VERSION.
define( 'WC_GATEWAY_PAYFAST_VERSION', '1.6.1' ); // WRCS: DEFINED_VERSION.
define( 'WC_GATEWAY_PAYFAST_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
define( 'WC_GATEWAY_PAYFAST_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );

Expand Down Expand Up @@ -106,7 +106,7 @@ function ( Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry $payment
* - custom_order_tables
* - product_block_editor
*
* @since x.x.x Rename function
* @since 1.6.1 Rename function
* @return void
*/
function woocommerce_payfast_declare_feature_compatibility() {
Expand Down

0 comments on commit 2260ac3

Please sign in to comment.