Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
glena committed Jun 6, 2016
1 parent e3ca09c commit b66b0d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions WP_Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/WP_Auth0_DBManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit b66b0d7

Please sign in to comment.