From 21ce9f7313a8c6f35d6e4b1cb40d8cb8b49aafb6 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sat, 15 Sep 2018 09:22:25 +0000 Subject: [PATCH] Build/Test Tools: Implement the automatic retry functionality that Travis CI provides. This functionality will cause the command to be retried up to three times in case of a non-zero return value. Implementing it on commands that perform network requests means that intermittent network failures are less likely to cause a build to fail, as they'll be retried up to three times. See #44858 Built from https://develop.svn.wordpress.org/trunk@43645 git-svn-id: http://core.svn.wordpress.org/trunk@43474 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 b90296d5d8..c91aef182e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43644'; +$wp_version = '5.0-alpha-43645'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.