Added mercurial's "default" branch as a valid dev version (same as master / trunk).
parent
f74dafc08c
commit
d78548cbf9
|
@ -34,7 +34,7 @@ class VersionParser
|
||||||
{
|
{
|
||||||
$version = trim($version);
|
$version = trim($version);
|
||||||
|
|
||||||
if (preg_match('{^(?:master|trunk)(?:[.-]?dev)?$}i', $version)) {
|
if (preg_match('{^(?:master|trunk|default)(?:[.-]?dev)?$}i', $version)) {
|
||||||
return '9999999-dev';
|
return '9999999-dev';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ class VersionParser
|
||||||
{
|
{
|
||||||
$name = trim($name);
|
$name = trim($name);
|
||||||
|
|
||||||
if (in_array($name, array('master', 'trunk'))) {
|
if (in_array($name, array('master', 'trunk', 'default'))) {
|
||||||
return $this->normalize($name);
|
return $this->normalize($name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,6 @@ class HgBitbucketDriver implements VcsDriverInterface
|
||||||
foreach ($tagsData as $tag => $data) {
|
foreach ($tagsData as $tag => $data) {
|
||||||
$this->tags[$tag] = $data['raw_node'];
|
$this->tags[$tag] = $data['raw_node'];
|
||||||
}
|
}
|
||||||
unset($this->tags['tip']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->tags;
|
return $this->tags;
|
||||||
|
|
|
@ -126,7 +126,6 @@ class HgDriver implements VcsDriverInterface
|
||||||
preg_match('(^([^\s]+)[\s]+[\d+]:(.*)$)', $tag, $match);
|
preg_match('(^([^\s]+)[\s]+[\d+]:(.*)$)', $tag, $match);
|
||||||
$tags[$match[1]] = $match[2];
|
$tags[$match[1]] = $match[2];
|
||||||
}
|
}
|
||||||
unset($tags['tip']);
|
|
||||||
$this->tags = $tags;
|
$this->tags = $tags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ interface VcsDriverInterface
|
||||||
function getComposerInformation($identifier);
|
function getComposerInformation($identifier);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the root identifier (trunk, master, ..)
|
* Return the root identifier (trunk, master, default/tip ..)
|
||||||
*
|
*
|
||||||
* @return string Identifier
|
* @return string Identifier
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue