diff --git a/features/install-extensions.feature b/features/install-extensions.feature index 667ce5db..35076040 100644 --- a/features/install-extensions.feature +++ b/features/install-extensions.feature @@ -10,8 +10,8 @@ Feature: Extensions can be installed with PIE Examples: | constraint | version | - | 2.0.3 | 2.0.3 | - | ^2.0 | 2.0.3 | + | 2.0.5 | 2.0.5 | + | ^2.0 | 2.0.5 | @non-windows Example: An in-development version can be downloaded on non-Windows systems diff --git a/test/integration/Command/DownloadCommandTest.php b/test/integration/Command/DownloadCommandTest.php index 0b75e8e1..8f0116da 100644 --- a/test/integration/Command/DownloadCommandTest.php +++ b/test/integration/Command/DownloadCommandTest.php @@ -24,7 +24,7 @@ #[CoversClass(DownloadCommand::class)] class DownloadCommandTest extends TestCase { - private const TEST_PACKAGE_LATEST = '2.0.3'; + private const TEST_PACKAGE_LATEST = '2.0.5'; private const TEST_PACKAGE = 'asgrim/example-pie-extension'; private CommandTester $commandTester; diff --git a/test/integration/DependencyResolver/ResolveDependencyWithComposerTest.php b/test/integration/DependencyResolver/ResolveDependencyWithComposerTest.php index df5c7c82..4c03c8c9 100644 --- a/test/integration/DependencyResolver/ResolveDependencyWithComposerTest.php +++ b/test/integration/DependencyResolver/ResolveDependencyWithComposerTest.php @@ -26,7 +26,7 @@ #[CoversClass(ResolveDependencyWithComposer::class)] final class ResolveDependencyWithComposerTest extends TestCase { - private const TEST_PACKAGE_LATEST = '2.0.3'; + private const TEST_PACKAGE_LATEST = '2.0.5'; private const DOWNLOAD_URL_ANY = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/%s'; private const DOWNLOAD_URL_1_0_1_ALPHA_3 = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/115f8f8e01ee098a18ec2f47af4852be51ebece7'; private const DOWNLOAD_URL_1_0_1 = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/769f906413d6d1e12152f6d34134cbcd347ca253';