From 1c0c573042ff607cfa2d0ab3b74b582a9e9c5e6f Mon Sep 17 00:00:00 2001 From: Simon Schaufelberger Date: Wed, 9 Dec 2020 16:21:54 +0100 Subject: [PATCH] [TASK] Release 2.3.0 --- Documentation/Installation/Index.rst | 2 +- Documentation/Settings.cfg | 4 ++-- surf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/Installation/Index.rst b/Documentation/Installation/Index.rst index 86137205..52f7e505 100644 --- a/Documentation/Installation/Index.rst +++ b/Documentation/Installation/Index.rst @@ -20,7 +20,7 @@ Download phar archive To install Surf as phar archive, run the following commands:: mkdir /usr/local/surf - curl -L https://github.com/TYPO3/Surf/releases/download/2.2.2/surf.phar -o /usr/local/surf/surf.phar + curl -L https://github.com/TYPO3/Surf/releases/download/2.3.0/surf.phar -o /usr/local/surf/surf.phar chmod +x /usr/local/surf/surf.phar ln -s /usr/local/surf/surf.phar /usr/local/bin/surf diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 5aa50fb0..899098b9 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -1,8 +1,8 @@ [general] project = Surf -release = 2.2.2 -version = 2.2 +release = 2.3.0 +version = 2.3 [notify] diff --git a/surf b/surf index 0404f547..364f0b41 100755 --- a/surf +++ b/surf @@ -9,6 +9,6 @@ foreach ([__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', } } -$app = new \TYPO3\Surf\Cli\Symfony\ConsoleApplication('TYPO3 Surf', '2.2.2'); +$app = new \TYPO3\Surf\Cli\Symfony\ConsoleApplication('TYPO3 Surf', '2.3.0'); $app->setFactory(new \TYPO3\Surf\Integration\Factory()); $app->run();