From c51272f825bf0aa02421d47825a8d5f1f2c15049 Mon Sep 17 00:00:00 2001 From: Jan Nedbal Date: Mon, 4 Mar 2024 13:55:53 +0100 Subject: [PATCH] Use core v3.0.0 (#305) --- src/EditorconfigChecker/Cli.php | 2 +- src/EditorconfigChecker/Utilities.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EditorconfigChecker/Cli.php b/src/EditorconfigChecker/Cli.php index ca2091e..fcc1b4b 100644 --- a/src/EditorconfigChecker/Cli.php +++ b/src/EditorconfigChecker/Cli.php @@ -4,7 +4,7 @@ use EditorconfigChecker\Utilities; -define('CORE_VERSION', '2.8.0'); +define('CORE_VERSION', '3.0.0'); class Cli { diff --git a/src/EditorconfigChecker/Utilities.php b/src/EditorconfigChecker/Utilities.php index f631b1b..f782652 100644 --- a/src/EditorconfigChecker/Utilities.php +++ b/src/EditorconfigChecker/Utilities.php @@ -83,7 +83,7 @@ public static function downloadReleaseArchive(string $releaseName, string $versi $releaseSuffix = '.exe.tar.gz'; } $releaseUrl = sprintf( - 'https://github.com/editorconfig-checker/editorconfig-checker/releases/download/%s/%s', + 'https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v%s/%s', $version, $releaseName . $releaseSuffix );