Make WordPress Core


Ignore:
Timestamp:
07/27/2023 10:18:04 AM (15 months ago)
Author:
audrasjb
Message:

Bundled Themes: Bump version numbers for WordPress 6.3.

In coordination with the release of 6.3, a new version of each bundled theme will also be released. This bumps the version of each theme to the following:

  • Twenty Ten: 3.9
  • Twenty Eleven: 4.4
  • Twenty Twelve: 4.0
  • Twenty Thirteen: 3.9
  • Twenty Fourteen: 3.7
  • Twenty Fifteen: 3.5
  • Twenty Sixteen: 3.0
  • Twenty Seventeen: 3.3
  • Twenty Nineteen: 2.6
  • Twenty Twenty: 2.3
  • Twenty Twenty-One: 1.9
  • Twenty Twenty-Two: 1.5
  • Twenty Twenty-Three: 1.2

Props mukesh27, hareesh-pillai, audrasjb, jakariaistauk, kafleg, sabernhardt, spacedmonkey.
Reviewed by audrasjb, spacedmonkey.
Merges [56315] to the 6.3 branch.
Fixes #57857.

Location:
branches/6.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/6.3

  • branches/6.3/src/wp-content/themes/twentysixteen/functions.php

    r55929 r56318  
    392392
    393393    // Theme stylesheet.
    394     wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri(), array(), '20230328' );
     394    wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri(), array(), '20230808' );
    395395
    396396    // Theme block stylesheet.
    397     wp_enqueue_style( 'twentysixteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentysixteen-style' ), '20230206' );
     397    wp_enqueue_style( 'twentysixteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentysixteen-style' ), '20230628' );
    398398
    399399    // Load the Internet Explorer specific stylesheet.
     
    424424    }
    425425
    426     wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20211130', true );
     426    wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230629', true );
    427427
    428428    wp_localize_script(
     
    444444function twentysixteen_block_editor_styles() {
    445445    // Block styles.
    446     wp_enqueue_style( 'twentysixteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20221004' );
     446    wp_enqueue_style( 'twentysixteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20230628' );
    447447    // Add custom fonts.
    448448    $font_version = ( 0 === strpos( (string) twentysixteen_fonts_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null;
Note: See TracChangeset for help on using the changeset viewer.