Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=== Two-Factor ===
Contributors: georgestephanis, valendesigns, stevenkword, extendwings, sgrant, aaroncampbell, johnbillion, stevegrunwell, netweb, kasparsd, alihusnainarshad, passoniate
Tags: 2fa, mfa, totp, authentication, security
Tested up to: 6.7
Stable tag: 0.13.0
Tested up to: 6.8
Stable tag: 0.14.0
License: GPL-2.0-or-later
License URI: https://spdx.org/licenses/GPL-2.0-or-later.html

Expand Down Expand Up @@ -53,7 +53,9 @@ To report a security issue, please visit the [WordPress HackerOne](https://hacke

1. Two-factor options under User Profile.
2. U2F Security Keys section under User Profile.
3. Email Code Authentication during WordPress Login.
3. Login with authentication app code.
4. Login with recovery code.
5. Login with email code.

== Changelog ==

Expand Down
4 changes: 2 additions & 2 deletions two-factor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* Plugin Name: Two Factor
* Plugin URI: https://wordpress.org/plugins/two-factor/
* Description: Enable Two-Factor Authentication using time-based one-time passwords, Universal 2nd Factor (FIDO U2F, YubiKey), email, and backup verification codes.
* Version: 0.13.0
* Requires at least: 6.7
* Version: 0.14.0
* Requires PHP: 7.2
* Author: WordPress.org Contributors
* Author URI: https://github.com/wordpress/two-factor/graphs/contributors
Expand All @@ -30,7 +30,7 @@
/**
* Version of the plugin.
*/
define( 'TWO_FACTOR_VERSION', '0.13.0' );
define( 'TWO_FACTOR_VERSION', '0.14.0' );

/**
* Include the base class here, so that other plugins can also extend it.
Expand Down
Loading