PluginProbe
Gutenberg / 12.1.0
Gutenberg v12.1.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
← All changes | gutenberg.php +6 -6 12.6.012.1.0 View file →
@@ -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 new block editor in core.
6 - * Requires at least: 5.8
6 + * Requires at least: 5.7
7 7 * Requires PHP: 5.6
8 - * Version: 12.6.0
8 + * Version: 12.1.0
9 9 * Author: Gutenberg Team
10 10 * Text Domain: gutenberg
11 11 *
12 12 * @package gutenberg
@@ -12,10 +12,10 @@
12 12 * @package gutenberg
13 13 */
14 14
15 15 ### BEGIN AUTO-GENERATED DEFINES
16 -define( 'GUTENBERG_VERSION', '12.6.0' );
17 -define( 'GUTENBERG_GIT_COMMIT', 'b0a9d08da24fd1b89a83a78566beb1c4a778cedf' );
16 +define( 'GUTENBERG_VERSION', '12.1.0' );
17 +define( 'GUTENBERG_GIT_COMMIT', '78b235a583f3ab67f82301eff635e1ff95266db5' );
18 18 ### END AUTO-GENERATED DEFINES
19 19
20 20 gutenberg_pre_init();
21 21
@@ -26,9 +26,9 @@
26 26 */
27 27 function gutenberg_wordpress_version_notice() {
28 28 echo '<div class="error"><p>';
29 29 /* translators: %s: Minimum required version */
30 - printf( __( 'Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.', 'gutenberg' ), '5.8' );
30 + printf( __( 'Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.', 'gutenberg' ), '5.7' );
31 31 echo '</p></div>';
32 32
33 33 deactivate_plugins( array( 'gutenberg/gutenberg.php' ) );
34 34 }
@@ -64,9 +64,9 @@
64 64
65 65 // Compare against major release versions (X.Y) rather than minor (X.Y.Z)
66 66 // unless a minor release is the actual minimum requirement. WordPress reports
67 67 // X.Y for its major releases.
68 - if ( version_compare( $version, '5.8', '<' ) ) {
68 + if ( version_compare( $version, '5.7', '<' ) ) {
69 69 add_action( 'admin_notices', 'gutenberg_wordpress_version_notice' );
70 70 return;
71 71 }
72 72