Update version to 1.0.1 (first patch).

This commit is contained in:
Elfet 2014-07-07 16:35:41 +04:00
parent f75f500fdc
commit 9df980bcf0
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ $deployFile = getcwd() . '/deploy.php';
if (is_file($deployFile) && is_readable($deployFile)) {
// Init Deployer
$deployer = new \Deployer\Deployer(
new \Symfony\Component\Console\Application('Deployer', '1.0.0'),
new \Symfony\Component\Console\Application('Deployer', '1.0.1'),
new \Symfony\Component\Console\Input\ArgvInput(),
new \Symfony\Component\Console\Output\ConsoleOutput()
);

2
build
View File

@ -2,7 +2,7 @@
<?php
require __DIR__ . '/vendor/autoload.php';
$version = '1.0.0';
$version = '1.0.1';
$pharName = 'deployer.phar';
$pharFile = __DIR__ . '/' . $pharName;