From 4f7facf66c6719d2062b7455fb5f3d48c952942d Mon Sep 17 00:00:00 2001 From: cdottori Date: Thu, 27 Oct 2022 19:16:14 -0300 Subject: [PATCH] Bump to v0.5.2 --- CHANGELOG.md | 4 ++++ composer.json | 2 +- src/utils/rest.php | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca38caa..d5e0f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] +## [0.5.2] - 2022-10-27 +### Fixed +- ecdsa dependency missing classmap + ## [0.5.1] - 2022-10-26 ### Fixed - repeated autoload requirement diff --git a/composer.json b/composer.json index 162ab74..b966d80 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "starkinfra/sdk", - "version": "0.5.1", + "version": "0.5.2", "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 a21b98d..50fdbc5 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.5.1"; + private const sdkVersion = "0.5.2"; private const host = StarkHost::infra; public static function getPage($user, $resource, array $query = [])