From 75485a11abaf7ad287ea63cc09510ceb885c48e5 Mon Sep 17 00:00:00 2001 From: Florian Date: Sat, 6 Feb 2016 18:07:08 +0100 Subject: [PATCH] Use semver for wgVersion alpha versions Currently, the "alpha version" of MediaWiki is the only version, that doesn't follow semantic versioning (1.27alpha), wmf branches are named according to the sember convention (e.g. 1.27.0-wmf.1) and releases, too (e.g. 1.26.0). Change the alpha version naming to follow semver, too: 1.27alpha -> 1.27.0-alpha Change-Id: I026825c688e2eaed104ed2d0ec206b5a897a3527 --- includes/DefaultSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 9c7106f83f..6a41152f83 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -75,7 +75,7 @@ $wgConfigRegistry = array( * MediaWiki version number * @since 1.2 */ -$wgVersion = '1.27alpha'; +$wgVersion = '1.27.0-alpha'; /** * Name of the site. It must be changed in LocalSettings.php -- 2.20.1