Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions features/install-extensions.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/integration/Command/DownloadCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
Loading