Added bump version task to RoboFile.php

This commit is contained in:
Yves Hoppe 2017-01-14 11:22:05 +01:00
parent 572eebbfc4
commit 5f461d7a37
1 changed files with 10 additions and 0 deletions

View File

@ -683,4 +683,14 @@ class RoboFile extends \Robo\Tasks
return $os;
}
/**
* Update Version __DEPLOY_VERSION__ in Weblinks. (Set the version up in the jorobo.ini)
*
* @return void
*/
public function bump()
{
(new \Joomla\Jorobo\Tasks\BumpVersion())->run();
}
}