Make WordPress Core


Ignore:
Timestamp:
07/15/2024 01:57:11 PM (9 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/twentytwelve/functions.php

    r57886 r58718  
    207207
    208208    // Loads our main stylesheet.
    209     wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20240402' );
     209    wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20240716' );
    210210
    211211    // Theme block stylesheet.
    212     wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20230213' );
     212    wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20240603' );
    213213
    214214    // Loads the Internet Explorer specific stylesheet.
     
    225225function twentytwelve_block_editor_styles() {
    226226    // Block styles.
    227     wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20230213' );
     227    wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20240506' );
    228228    // Add custom fonts.
    229229    $font_version = ( 0 === strpos( (string) twentytwelve_get_font_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null;
Note: See TracChangeset for help on using the changeset viewer.