Skip to content

Commit

Permalink
v2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed May 8, 2024
1 parent 2620b6c commit 68c5460
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions bh-wp-autologin-urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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__ ) );

/**
Expand Down
2 changes: 1 addition & 1 deletion src/api/class-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

/**
Expand Down

0 comments on commit 68c5460

Please sign in to comment.