diff --git a/readme.rst b/readme.rst index 3a0454181..ded933103 100644 --- a/readme.rst +++ b/readme.rst @@ -92,7 +92,7 @@ The command should execute successfully and show you the version number of N98-M .. code-block:: sh - n98-magerun version 1.97.0 by netz98 new media GmbH + n98-magerun version 2.3.0 by valantic CEC You now have successfully installed Magerun! You can tailor the installation further like installing it system-wide and enable autocomplete - read on for more information about these and other features. diff --git a/src/N98/Magento/Application.php b/src/N98/Magento/Application.php index fa1438503..c9053c7f5 100644 --- a/src/N98/Magento/Application.php +++ b/src/N98/Magento/Application.php @@ -485,7 +485,7 @@ public function getHelp() public function getLongVersion() { - return parent::getLongVersion() . ' by netz98 GmbH'; + return parent::getLongVersion() . ' by valantic CEC'; } /** diff --git a/tests/N98/Magento/Command/ListCommandTest.php b/tests/N98/Magento/Command/ListCommandTest.php index a4bf3cd81..afea0d266 100644 --- a/tests/N98/Magento/Command/ListCommandTest.php +++ b/tests/N98/Magento/Command/ListCommandTest.php @@ -16,7 +16,7 @@ public function testExecute() ); self::assertStringContainsString( - sprintf('n98-magerun %s by netz98 GmbH', $this->getApplication()->getVersion()), + sprintf('n98-magerun %s by valantic CEC', $this->getApplication()->getVersion()), $commandTester->getDisplay() ); }