diff --git a/composer.json b/composer.json index 410038f..62a3589 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "volt-test/php-sdk", "description": "Volt Test PHP SDK - A performance testing tool for PHP applications", "type": "library", - "version": "0.9.2", + "version": "1.0.0", "keywords": [ "volt-test", "php-sdk", diff --git a/src/Platform.php b/src/Platform.php index d7aed74..4d8c60c 100644 --- a/src/Platform.php +++ b/src/Platform.php @@ -6,14 +6,12 @@ class Platform { private const BINARY_NAME = 'volt-test'; - private const ENGINE_CURRENT_VERSION = 'v0.9.2'; + private const ENGINE_CURRENT_VERSION = 'v1.0.0'; private const BASE_DOWNLOAD_URL = 'https://github.com/volt-test/binaries/releases/download'; private const SUPPORTED_PLATFORMS = [ 'linux-amd64' => 'volt-test-linux-amd64', 'darwin-amd64' => 'volt-test-darwin-amd64', 'darwin-arm64' => 'volt-test-darwin-arm64', - 'windows-amd64' => 'volt-test-windows-amd64.exe', - 'windows-AMD64' => 'volt-test-windows-amd64.exe', ]; private static function getVendorDir(): string