mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
This updates the following dependencies: - `@pmmmwh/react-refresh-webpack-plugin` from `0.5.5` to `0.5.11`. - `autoprefixer` from `10.4.16` to `10.4.17`. - `copy-webpack-plugin` from `11.0.0` to `12.0.2`. - `cssnano` from `6.0.1` to `6.0.3`. - `dotenv` from `16.3.1` to `16.4.4`. - `dotenv-expand` from `10.0.0` to `11.0.3`. - `postcss` from `8.4.31` to `8.4.35`. - `sass` from `1.69.3` to `1.70.0`. - `sinon` from `16.0.3` to `16.1.3`. - `source-map-loader` from `4.0.1` to `5.0.0`. - `terser-webpack-plugin` from `5.3.9` to `5.3.10`. - `wait-on` from `7.0.1` to `7.2.0`. - `webpack` from `5.89.0` to `5.90.2`. Additionally, `npm audit fix` has been run. See #59658. Built from https://develop.svn.wordpress.org/trunk@57635 git-svn-id: http://core.svn.wordpress.org/trunk@57136 1a063a9b-81f0-0310-95a4-ce76da25c4cd
48 lines
940 B
PHP
48 lines
940 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.2.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string.
|
|
*
|
|
* Holds the current version number for WordPress core. Used to bust caches
|
|
* and to enable development mode for scripts when running from the /src directory.
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '6.5-beta1-57635';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 57155;
|
|
|
|
/**
|
|
* 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 = '7.0.0';
|
|
|
|
/**
|
|
* Holds the required MySQL version.
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.5.5';
|