diff --git a/CHANGELOG.md b/CHANGELOG.md index 53890ca..485bcd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.4.1 + +* Fix fatal error with WooCommerce HPOS meta boxes hook – strict typing issue + ### 2.4.0 * Add: REST API diff --git a/README.txt b/README.txt index ac14c5a..c92a55f 100755 --- a/README.txt +++ b/README.txt @@ -38,6 +38,10 @@ An API is available for developers to use autologin codes elsewhere in WordPress == Changelog == += 2.4.1 = + +* Fix fatal error with WooCommerce HPOS meta boxes hook – strict typing issue + = 2.4.0 = * Add: REST API diff --git a/bh-wp-autologin-urls.php b/bh-wp-autologin-urls.php index 058f4f8..472c0fc 100755 --- a/bh-wp-autologin-urls.php +++ b/bh-wp-autologin-urls.php @@ -10,7 +10,7 @@ * Plugin Name: Magic Emails & Autologin URLs * Plugin URI: https://wordpress.org/BrianHenryIE/bh-wp-autologin-urls * Description: Log in users via emails sent from WordPress. - * Version: 2.4.0 + * Version: 2.4.1 * Tested up to: 6.4 * Requires PHP: 7.4 * Author: BrianHenryIE @@ -43,7 +43,7 @@ /** * Currently plugin version. */ -define( 'BH_WP_AUTOLOGIN_URLS_VERSION', '2.5.0' ); +define( 'BH_WP_AUTOLOGIN_URLS_VERSION', '2.4.1' ); define( 'BH_WP_AUTOLOGIN_URLS_BASENAME', plugin_basename( __FILE__ ) ); /** diff --git a/src/api/class-settings.php b/src/api/class-settings.php index c31e23b..00660bc 100644 --- a/src/api/class-settings.php +++ b/src/api/class-settings.php @@ -135,7 +135,7 @@ public function get_plugin_slug(): string { public function get_plugin_version(): string { return defined( 'BH_WP_AUTOLOGIN_URLS_VERSION' ) ? constant( 'BH_WP_AUTOLOGIN_URLS_VERSION' ) - : '2.4.0'; + : '2.4.1'; } /**