From 8f3be81d8d8b7bc6b15a3b3bf33eed0bca5623bf Mon Sep 17 00:00:00 2001 From: iandunn Date: Tue, 25 Dec 2018 19:27:51 +0000 Subject: [PATCH] SVN: Trim trailing whitespace to match `ignore` entry exactly. When the entry for `wp-cli.local.yml` was added in r30057, it included a trailing whitespace. Presumably, that doesn't cause any problems with some combinations of OS/SVN client/EOL markers/etc, but in some cases it will prevent the entry from being ignored. After removing the whitespace, the file is ignored as expected. See #30134. Built from https://develop.svn.wordpress.org/trunk@44362 git-svn-id: http://core.svn.wordpress.org/trunk@44192 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 20f0615c21..976acd8abb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44361'; +$wp_version = '5.1-alpha-44362'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.