From abeb5ef9bc9c87fd3d0e6ffbbc5877ebd7b8d459 Mon Sep 17 00:00:00 2001 From: desrosj Date: Mon, 9 Mar 2026 18:43:38 +0000 Subject: [PATCH] Build/Test Tools: Properly transform `theme.json` files during copy. The `theme.json` file `$schema` URL is relative in the `gutenberg` repository upstream. The URL is not currently being replaced with an aboslute one pointing to w.org due to a missing `transform: true` configuration. Follow up to [61438], [61439], [61458], [61492], [61677]. See #64393. Built from https://develop.svn.wordpress.org/trunk@61867 git-svn-id: http://core.svn.wordpress.org/trunk@61154 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.json | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.json b/wp-includes/theme.json index 5cfb3ccda0..fb26d36518 100644 --- a/wp-includes/theme.json +++ b/wp-includes/theme.json @@ -1,5 +1,5 @@ { - "$schema": "../schemas/json/theme.json", + "$schema": "https://schemas.wp.org/trunk/theme.json", "version": 3, "settings": { "appearanceTools": false, diff --git a/wp-includes/version.php b/wp-includes/version.php index 56f1414a80..b82ab9b893 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.0-beta3-61866'; +$wp_version = '7.0-beta3-61867'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.