Make WordPress Core


Ignore:
Timestamp:
07/15/2024 01:57:11 PM (8 months ago)
Author:
davidbaumwald
Message:

Bundled Themes: Bump default theme versions for release with 6.6.

This updates the version of each default theme to the following versions:

  • Twenty Ten: 4.2
  • Twenty Eleven: 4.7
  • Twenty Twelve: 4.3
  • Twenty Thirteen: 4.2
  • Twenty Fourteen: 4.0
  • Twenty Fifteen: 3.8
  • Twenty Sixteen: 3.3
  • Twenty Seventeen: 3.7
  • Twenty Nineteen: 2.9
  • Twenty Twenty: 2.7
  • Twenty Twenty-One: 2.3
  • Twenty Twenty-Two: 1.8
  • Twenty Twenty-Three: 1.5
  • Twenty Twenty-Four: 1.2

These versions will released in coordination with WordPress 6.6.

Props sabernhardt, shail-mehta, rudlinkon.
Fixes #60701.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyseventeen/functions.php

    r58237 r58718  
    453453
    454454    // Theme stylesheet.
    455     wp_enqueue_style( 'twentyseventeen-style', get_stylesheet_uri(), array(), '20240402' );
     455    wp_enqueue_style( 'twentyseventeen-style', get_stylesheet_uri(), array(), '20240716' );
    456456
    457457    // Theme block stylesheet.
    458     wp_enqueue_style( 'twentyseventeen-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'twentyseventeen-style' ), '20220912' );
     458    wp_enqueue_style( 'twentyseventeen-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'twentyseventeen-style' ), '20240624' );
    459459
    460460    // Load the dark colorscheme.
    461461    if ( 'dark' === get_theme_mod( 'colorscheme', 'light' ) || is_customize_preview() ) {
    462         wp_enqueue_style( 'twentyseventeen-colors-dark', get_theme_file_uri( '/assets/css/colors-dark.css' ), array( 'twentyseventeen-style' ), '20191025' );
     462        wp_enqueue_style( 'twentyseventeen-colors-dark', get_theme_file_uri( '/assets/css/colors-dark.css' ), array( 'twentyseventeen-style' ), '20240412' );
    463463    }
    464464
     
    542542function twentyseventeen_block_editor_styles() {
    543543    // Block styles.
    544     wp_enqueue_style( 'twentyseventeen-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks.css' ), array(), '20230614' );
     544    wp_enqueue_style( 'twentyseventeen-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks.css' ), array(), '20240624' );
    545545    // Add custom fonts.
    546546    $font_version = ( 0 === strpos( (string) twentyseventeen_fonts_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null;
Note: See TracChangeset for help on using the changeset viewer.