From aa6972c247a8fc00d38cd9cc1ef66e6d8615865a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 19 Sep 2022 23:53:09 +0000 Subject: [PATCH] Tests: Add tests with deprecated timezone strings. This commit adds tests in select places to ensure that these date/time related functions continue to behave as expected when the `timezone_string` option is set to an outdated/deprecated timezone name. The timezone string used in these tests, `America/Buenos_Aires`, is a timezone string which was already deprecated in PHP 5.6.20 (the current minimum PHP version), so using this timezone string, we can safely test the handling of deprecated timezone names on all supported PHP versions. See: [https://3v4l.org/Holsr#v5.6.20 timezone_identifiers_list() output for PHP 5.6.20]. Follow-up to [54207], [54217], [54227], [54229]. Props jrf, costdev. See #56468. Built from https://develop.svn.wordpress.org/trunk@54230 git-svn-id: http://core.svn.wordpress.org/trunk@53789 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 25abc3a081..34da1586de 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54229'; +$wp_version = '6.1-alpha-54230'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.