From b66b0d7939e2a65d1d944635442fff789e6a467d Mon Sep 17 00:00:00 2001 From: German Lena Date: Mon, 6 Jun 2016 12:03:21 -0300 Subject: [PATCH] bump version --- WP_Auth0.php | 6 +++--- lib/WP_Auth0_DBManager.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WP_Auth0.php b/WP_Auth0.php index 3b52aaae..0d209312 100644 --- a/WP_Auth0.php +++ b/WP_Auth0.php @@ -2,7 +2,7 @@ /** * Plugin Name: PLUGIN_NAME * Description: PLUGIN_DESCRIPTION - * Version: 3.0.0 + * Version: 3.0.1 * Author: Auth0 * Author URI: https://auth0.com */ @@ -11,8 +11,8 @@ define( 'WPA0_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) ); define( 'WPA0_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) ); define( 'WPA0_LANG', 'wp-auth0' ); -define( 'AUTH0_DB_VERSION', 8 ); -define( 'WPA0_VERSION', '3.0.0' ); +define( 'AUTH0_DB_VERSION', 9 ); +define( 'WPA0_VERSION', '3.0.1' ); /** * Main plugin class diff --git a/lib/WP_Auth0_DBManager.php b/lib/WP_Auth0_DBManager.php index d9dc543b..00beb596 100644 --- a/lib/WP_Auth0_DBManager.php +++ b/lib/WP_Auth0_DBManager.php @@ -43,7 +43,7 @@ public function install_db() { $options->set( 'cdn_url', '//cdn.auth0.com/js/lock-9.1.min.js' ); } - if ( $this->current_db_version < 8 ) { + if ( $this->current_db_version < 9 ) { $this->migrate_users_data(); }