Skip to content

Commit b7ba011

Browse files
committed
force re-check lock version + version bump
1 parent 4eed488 commit b7ba011

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

WP_Auth0.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: PLUGIN_NAME
44
* Description: PLUGIN_DESCRIPTION
5-
* Version: 3.2.8
5+
* Version: 3.2.9
66
* Author: Auth0
77
* Author URI: https://auth0.com
88
*/
@@ -11,8 +11,8 @@
1111
define( 'WPA0_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
1212
define( 'WPA0_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
1313
define( 'WPA0_LANG', 'wp-auth0' );
14-
define( 'AUTH0_DB_VERSION', 11 );
15-
define( 'WPA0_VERSION', '3.2.8' );
14+
define( 'AUTH0_DB_VERSION', 12 );
15+
define( 'WPA0_VERSION', '3.2.9' );
1616

1717
/**
1818
* Main plugin class

lib/WP_Auth0_DBManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function install_db() {
112112

113113
}
114114

115-
if ( $this->current_db_version < 11 ) {
115+
if ( $this->current_db_version < 12 ) {
116116

117117
if ( strpos( $cdn_url, '10.' ) === false ) {
118118
$options->set('use_lock_10', false);

0 commit comments

Comments
 (0)