diff --git a/CHANGELOG.md b/CHANGELOG.md index 006a880..ff8c4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [0.12.0] - 2024-07-18 ### Added - request methods ### Changed diff --git a/composer.json b/composer.json index e61f8bc..2873fb7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "starkinfra/sdk", - "version": "0.11.0", + "version": "0.12.0", "type": "library", "description": "SDK to facilitate PHP integrations with the Stark Infra API", "homepage": "https://github.com/starkinfra/sdk-php", diff --git a/src/utils/rest.php b/src/utils/rest.php index 0fdb4b2..18ccb9c 100644 --- a/src/utils/rest.php +++ b/src/utils/rest.php @@ -8,7 +8,7 @@ class Rest { private const apiVersion = "v2"; - private const sdkVersion = "0.11.0"; + private const sdkVersion = "0.12.0"; private const host = StarkHost::infra; public static function getPage($user, $resource, array $query = [])