From 9294b1e7202f42cdd63915d3658e9fe390e445cd Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 20 Mar 2023 13:05:34 -0500 Subject: [PATCH 1/2] version bump to 0.8.0 --- readme.txt | 10 +++++----- two-factor.php | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/readme.txt b/readme.txt index 03cdefd3..282f259b 100644 --- a/readme.txt +++ b/readme.txt @@ -1,10 +1,10 @@ === Two-Factor === -Contributors: georgestephanis, valendesigns, stevenkword, extendwings, sgrant, aaroncampbell, johnbillion, stevegrunwell, netweb, kasparsd, alihusnainarshad, passoniate -Tags: two factor, two step, authentication, login, totp, fido u2f, u2f, email, backup codes, 2fa, yubikey +Contributors: georgestephanis, valendesigns, stevenkword, extendwings, sgrant, aaroncampbell, johnbillion, stevegrunwell, netweb, kasparsd, alihusnainarshad, passoniate +Tags: two factor, two step, authentication, login, totp, fido u2f, u2f, email, backup codes, 2fa, yubikey Requires at least: 4.3 -Tested up to: 6.0 -Requires PHP: 5.6 -Stable tag: 0.7.3 +Tested up to: 6.0 +Requires PHP: 5.6 +Stable tag: 0.8.0 Enable Two-Factor Authentication using time-based one-time passwords (OTP, Google Authenticator), Universal 2nd Factor (FIDO U2F, YubiKey), email and backup verification codes. diff --git a/two-factor.php b/two-factor.php index 4899cdb2..1d8b94d0 100644 --- a/two-factor.php +++ b/two-factor.php @@ -9,12 +9,12 @@ * * @wordpress-plugin * Plugin Name: Two Factor - * Plugin URI: https://wordpress.org/plugins/two-factor/ + * Plugin URI: https://wordpress.org/plugins/two-factor/ * Description: Two-Factor Authentication using time-based one-time passwords, Universal 2nd Factor (FIDO U2F), email and backup verification codes. - * Author: Plugin Contributors - * Version: 0.7.3 - * Author URI: https://github.com/wordpress/two-factor/graphs/contributors - * Network: True + * Author: Plugin Contributors + * Version: 0.8.0 + * Author URI: https://github.com/wordpress/two-factor/graphs/contributors + * Network: True * Text Domain: two-factor */ @@ -26,7 +26,7 @@ /** * Version of the plugin. */ -define( 'TWO_FACTOR_VERSION', '0.7.3' ); +define( 'TWO_FACTOR_VERSION', '0.8.0' ); /** * Include the base class here, so that other plugins can also extend it. From e4f0c14805211e9a8d26bb4045abd93a3b4c00d6 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 20 Mar 2023 13:14:27 -0500 Subject: [PATCH 2/2] Update .distignore --- .distignore | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.distignore b/.distignore index 72e50a2e..4df6c478 100644 --- a/.distignore +++ b/.distignore @@ -1,15 +1,19 @@ -.* +# Directories +/node_modules/ /tests/ /vendor/ -/node_modules/ /wordpress/ -/Gruntfile.js + +# Files +.* /composer.json /composer.lock +/docker-compose.yml +/Gruntfile.js +/npm-debug.log /package.json /package-lock.json -/npm-debug.log -/docker-compose.yml -/readme.md /phpcs* /phpunit* +/readme.md +/SECURITY.md \ No newline at end of file