1
0
Fork 0

show pretty version in both scenarios

pull/5328/head
Steve Buzonas 2016-06-03 19:05:04 -04:00
parent 7b6e06c686
commit 576721946c
1 changed files with 2 additions and 2 deletions

View File

@ -112,11 +112,11 @@ EOT
if ($previousRef && $currentVersion['commit'] !== $previousRef) {
$vcsVersionChanges[$targetDir] = array(
'previous' => array(
'version' => $package->getVersion(),
'version' => $package->getPrettyVersion(),
'ref' => $previousRef
),
'current' => array(
'version' => $parser->normalize($currentVersion['version']),
'version' => $currentVersion['version'],
'ref' => $currentVersion['commit'],
),
);