Skip to content

Commit

Permalink
Rebase and move to 6.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonjd committed Jul 9, 2024
1 parent 5df4061 commit 571c7a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* @package gutenberg
*/


/**
* Given a numeric value, returns a rounded a valid CSS <number> as a string.
* Negative zero values, e.g., `-0.0`, will return "0".
Expand Down
4 changes: 3 additions & 1 deletion lib/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ function gutenberg_is_experiment_enabled( $name ) {
require __DIR__ . '/compat/wordpress-6.5/blocks.php';
require __DIR__ . '/compat/wordpress-6.5/block-patterns.php';
require __DIR__ . '/compat/wordpress-6.5/kses.php';
require __DIR__ . '/compat/wordpress-6.5/formatting.php';
require __DIR__ . '/compat/wordpress-6.5/interactivity-api/class-wp-interactivity-api.php';
require __DIR__ . '/compat/wordpress-6.5/interactivity-api/class-wp-interactivity-api-directives-processor.php';
require __DIR__ . '/compat/wordpress-6.5/interactivity-api/interactivity-api.php';
Expand Down Expand Up @@ -153,6 +152,9 @@ function gutenberg_is_experiment_enabled( $name ) {
require __DIR__ . '/compat/wordpress-6.6/option.php';
require __DIR__ . '/compat/wordpress-6.6/post.php';

// WordPress 6.7 compat.
require __DIR__ . '/compat/wordpress-6.7/formatting.php';

// Experimental features.
require __DIR__ . '/experimental/block-editor-settings-mobile.php';
require __DIR__ . '/experimental/blocks.php';
Expand Down

0 comments on commit 571c7a6

Please sign in to comment.