| @@ -2,11 +2,11 @@ | ||
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: Gutenberg |
| 4 | 4 | * Plugin URI: https://github.com/WordPress/gutenberg |
| 5 | 5 | * Description: Printing since 1440. This is the development plugin for the block editor, site editor, and other future WordPress core functionality. |
| 6 | - * Requires at least: 6.8 | |
| 6 | + * Requires at least: 6.9 | |
| 7 | 7 | * Requires PHP: 7.4 |
| 8 | - * Version: 23.3.1 | |
| 8 | + * Version: 24.0.0 | |
| 9 | 9 | * Author: Gutenberg Team |
| 10 | 10 | * Text Domain: gutenberg |
| 11 | 11 | * |
| 12 | 12 | * @package gutenberg |
| @@ -11,9 +11,9 @@ | ||
| 11 | 11 | * |
| 12 | 12 | * @package gutenberg |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -defined( 'GUTENBERG_MINIMUM_WP_VERSION' ) or define( 'GUTENBERG_MINIMUM_WP_VERSION', '6.8' ); | |
| 15 | +defined( 'GUTENBERG_MINIMUM_WP_VERSION' ) or define( 'GUTENBERG_MINIMUM_WP_VERSION', '6.9' ); | |
| 16 | 16 | |
| 17 | 17 | gutenberg_pre_init(); |
| 18 | 18 | |
| 19 | 19 | /** |
| @@ -26,9 +26,9 @@ | ||
| 26 | 26 | /* translators: %s: Minimum required version */ |
| 27 | 27 | printf( __( 'Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.', 'gutenberg' ), GUTENBERG_MINIMUM_WP_VERSION ); |
| 28 | 28 | echo '</p></div>'; |
| 29 | 29 | |
| 30 | - deactivate_plugins( array( 'gutenberg/gutenberg.php' ) ); | |
| 30 | + deactivate_plugins( array( plugin_basename( __FILE__ ) ) ); | |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * Display a build notice. |