Plugin Directory

Changeset 2405165


Ignore:
Timestamp:
10/23/2020 09:35:56 AM (5 years ago)
Author:
2fas
Message:

Release v3.0.2

Location:
2fas/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • 2fas/trunk/changelog.txt

    r2356137 r2405165  
    11== Changelog ==
     2
     3= 3.0.2 (Oct. 23, 2020) =
     4* Fixed paths to works with WP-CLI
    25
    36= 3.0.1 (Aug. 10, 2020) =
  • 2fas/trunk/constants.php

    r2356137 r2405165  
    1515define( 'TWOFAS_TEMPLATES_PATH', $templates_path );
    1616define( 'TWOFAS_WP_ADMIN_PATH', $admin_url );
    17 define( 'TWOFAS_PLUGIN_VERSION', '3.0.1' );
     17define( 'TWOFAS_PLUGIN_VERSION', '3.0.2' );
    1818define( 'TWOFAS_DEPRECATE_PHP_OLDER_THAN', '5.6' );
  • 2fas/trunk/readme.txt

    r2356137 r2405165  
    130130== Changelog ==
    131131
    132 = 3.0.1 (Aug. 10, 2020) =
    133 * Fixed Push Notifications
     132= 3.0.2 (Oct. 23, 2020) =
     133* Fixed paths to works with WP-CLI
  • 2fas/trunk/start.php

    r2343404 r2405165  
    99}
    1010
    11 require_once 'vendor/autoload.php';
    12 require_once 'dependencies.php';
     11require_once TWOFAS_PLUGIN_PATH . 'vendor/autoload.php';
     12require_once TWOFAS_PLUGIN_PATH . 'dependencies.php';
    1313
    1414/** @var Requirement_Checker $requirements */
  • 2fas/trunk/twofas.php

    r2356137 r2405165  
    44 * Plugin URI:  https://wordpress.org/plugins/2fas/
    55 * Description: 2FAS strengthens WordPress admin security by requiring an additional verification code on untrusted devices.
    6  * Version:     3.0.1
     6 * Version:     3.0.2
    77 * Author:      Two Factor Authentication Service Inc.
    88 * Author URI:  https://2fas.com
  • 2fas/trunk/vendor/composer/autoload_real.php

    r2343404 r2405165  
    1414    }
    1515
     16    /**
     17     * @return \Composer\Autoload\ClassLoader
     18     */
    1619    public static function getLoader()
    1720    {
Note: See TracChangeset for help on using the changeset viewer.