Skip to content

Commit

Permalink
3.12.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
remyperona committed Aug 22, 2022
2 parents 6e9c577 + 6155524 commit 9457955
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inc/admin/upgrader.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
function rocket_upgrader() {
// Grab some infos.
$actual_version = get_rocket_option( 'version' );
$actual_version = (string) get_rocket_option( 'version' );
// You can hook the upgrader to trigger any action when WP Rocket is upgraded.
// first install.
if ( ! $actual_version ) {
Expand Down
4 changes: 2 additions & 2 deletions wp-rocket.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Rocket
* Plugin URI: https://wp-rocket.me
* Description: The best WordPress performance plugin.
* Version: 3.12
* Version: 3.12.0.1
* Requires at least: 5.6
* Requires PHP: 7.2
* Code Name: Iego
Expand All @@ -20,7 +20,7 @@
defined( 'ABSPATH' ) || exit;

// Rocket defines.
define( 'WP_ROCKET_VERSION', '3.12' );
define( 'WP_ROCKET_VERSION', '3.12.0.1' );
define( 'WP_ROCKET_WP_VERSION', '5.6' );
define( 'WP_ROCKET_WP_VERSION_TESTED', '5.9' );
define( 'WP_ROCKET_PHP_VERSION', '7.2' );
Expand Down

0 comments on commit 9457955

Please sign in to comment.