Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed May 23, 2023
1 parent 036cebc commit 4f1e888
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.1.1

* Fix: Default expiry time when omitted in CLI was parsing as 0
* Add: Warning that logs may contain autologin codes

### 2.1.0

* Add: CLI commands `wp autologin-urls get-url` and `wp autologin-urls send-magic-link`
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.1.0
* Version: 2.1.1
* Requires PHP: 7.4
* Author: BrianHenryIE
* Author URI: https://BrianHenry.ie
Expand Down Expand Up @@ -42,7 +42,7 @@
/**
* Currently plugin version.
*/
define( 'BH_WP_AUTOLOGIN_URLS_VERSION', '2.1.0' );
define( 'BH_WP_AUTOLOGIN_URLS_VERSION', '2.1.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 @@ -137,7 +137,7 @@ public function get_plugin_slug(): string {
* @return string
*/
public function get_plugin_version(): string {
return defined( 'BH_WP_AUTOLOGIN_URLS_VERSION' ) ? BH_WP_AUTOLOGIN_URLS_VERSION : '2.1.0';
return defined( 'BH_WP_AUTOLOGIN_URLS_VERSION' ) ? BH_WP_AUTOLOGIN_URLS_VERSION : '2.1.1';
}

/**
Expand Down

0 comments on commit 4f1e888

Please sign in to comment.