mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
This updates several packages to their latest patch versions to fix bugs discovered in the 5.6 branch. `@wordpress/block-directory` to `1.17.8` `@wordpress/block-editor` to `5.1.7` `@wordpress/block-library` to `2.26.8` `@wordpress/components` to `11.1.5` `@wordpress/core-data` to `2.24.4` `@wordpress/edit-post` to `3.25.8` `@wordpress/editor` to `9.24.7` `@wordpress/format-library` to `1.25.7` `@wordpress/list-reusable-blocks` to `1.24.5` `@wordpress/media-utils` to `1.18.1` `@wordpress/nux` to `3.23.5` `@wordpress/reusable-blocks` to `1.0.7` `@wordpress/server-side-render` to `1.19.5` Props isabel_brison, talldanwp, youknowriad, freewebmentor, sterndata, inc2734, itsjonq, jorgefilipecosta, aristath, nosolosw, mattwiebe, addiestavlo, kevin940726, noisysocks, aaronrobertshaw, glendaviesnz, gwwar, bernhard-reiter, paaljoachim. Fixes #52396, #52449, #52553. Built from https://develop.svn.wordpress.org/branches/5.6@50376 git-svn-id: http://core.svn.wordpress.org/branches/5.6@49987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
45 lines
778 B
PHP
45 lines
778 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.1.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string.
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '5.6.2-alpha-50376';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 49752;
|
|
|
|
/**
|
|
* Holds the TinyMCE version.
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '49110-20201110';
|
|
|
|
/**
|
|
* Holds the required PHP version.
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.6.20';
|
|
|
|
/**
|
|
* Holds the required MySQL version.
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|