Bundled Themes: Update schema version in style variation files.

This ensures that settings and styles are properly handled by code editors that support schema.

Reference: [https://developer.wordpress.org/block-editor/reference-guides/theme-json-reference/theme-json-v2/#json-schema Theme.json Version 2 Reference: JSON Schema].

Follow-up to [58403].

Props poena, umeshsinghin.
Fixes #61789.
Built from https://develop.svn.wordpress.org/trunk@58835


git-svn-id: http://core.svn.wordpress.org/trunk@58231 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2024-07-31 14:05:16 +00:00
parent 38fdd7bb3a
commit 2602d78021
21 changed files with 21 additions and 18 deletions

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Ember",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Fossil",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Ice",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Maelstrom",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Mint",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Onyx",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Rust",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Aubergine",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Block out",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Canary",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Electric",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Grapes",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Marigold",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Pilgrimage",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Pitch",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Sherbet",
"settings": {

View File

@ -1,5 +1,5 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Whisper",
"settings": {

View File

@ -1,4 +1,5 @@
{
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Blue",
"settings": {

View File

@ -1,4 +1,5 @@
{
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Pink",
"settings": {

View File

@ -1,4 +1,5 @@
{
"$schema": "https://schemas.wp.org/wp/6.5/theme.json",
"version": 2,
"title": "Swiss",
"settings": {

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.7-alpha-58834';
$wp_version = '6.7-alpha-58835';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.