From 7b6e06c686ab26ea566ab26bb5b5be7af372819e Mon Sep 17 00:00:00 2001 From: Steve Buzonas Date: Fri, 3 Jun 2016 17:57:23 -0400 Subject: [PATCH] normalize version to provide consistent output from package version vs vcs version --- src/Composer/Command/StatusCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/StatusCommand.php b/src/Composer/Command/StatusCommand.php index 2fcfcec22..aab1a952d 100644 --- a/src/Composer/Command/StatusCommand.php +++ b/src/Composer/Command/StatusCommand.php @@ -116,7 +116,7 @@ EOT 'ref' => $previousRef ), 'current' => array( - 'version' => $currentVersion['version'], + 'version' => $parser->normalize($currentVersion['version']), 'ref' => $currentVersion['commit'], ), );