diff --git a/CHANGELOG.md b/CHANGELOG.md index 39603ccf..f57f89d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### 4.0.4 +### 4.0.4, 4.0.5 4/30/2023 * Move register command out of runner and into Robo class. (#1143) * More PHP 8.2 and 8.1 Fixes (#1131, #1133, #1135, #1141) diff --git a/composer.json b/composer.json index d64307c8..b9cc5064 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ ], "require": { "php": ">=8.0", - "consolidation/annotated-command": "4.8.1", + "consolidation/annotated-command": "^4.8.1", "consolidation/config": "^2.0.1", "consolidation/log": "^2.0.2 || ^3", "consolidation/output-formatters": "^4.1.2", diff --git a/composer.lock b/composer.lock index 66e6b9cd..6c5091eb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c8e7ed4578fce4601bee132e075e8402", + "content-hash": "8936b9810c3ea45db154474e1a06b646", "packages": [ { "name": "composer/semver", @@ -89,16 +89,16 @@ }, { "name": "consolidation/annotated-command", - "version": "4.8.1", + "version": "4.8.2", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "8fefdcff0cdb61bc04e34323f626404d536786a5" + "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/8fefdcff0cdb61bc04e34323f626404d536786a5", - "reference": "8fefdcff0cdb61bc04e34323f626404d536786a5", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", + "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", "shasum": "" }, "require": { @@ -139,9 +139,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.8.1" + "source": "https://github.com/consolidation/annotated-command/tree/4.8.2" }, - "time": "2023-02-28T15:36:38+00:00" + "time": "2023-03-11T19:32:28+00:00" }, { "name": "consolidation/config", diff --git a/src/Robo.php b/src/Robo.php index 9db38156..cad208d2 100644 --- a/src/Robo.php +++ b/src/Robo.php @@ -26,7 +26,7 @@ class Robo { const APPLICATION_NAME = 'Robo'; - private const VERSION = '4.0.5-dev'; + private const VERSION = '4.0.5'; /** * The currently active container object, or NULL if not initialized yet.