From 679297955c169f9cf78f9e8cc9e1fcca1f80241d Mon Sep 17 00:00:00 2001 From: Roman Sedykh Date: Tue, 7 Feb 2023 11:18:41 +0700 Subject: [PATCH] Changelog for 4.0.2 --- CHANGELOG.md | 5 +++++ src/Configuration.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca9cda9..d9d40b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based now on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [4.0.2] +### Added +- Method `removeKey` to remove medatada keys +- Samples for all API requests + ## [4.0.1] ### Removed - `GroupApiInterface::storeGroup($id)` method: see [Uploadcare API changelog](https://uploadcare.com/api-refs/rest-api/v0.7.0/#tag/Changelog) diff --git a/src/Configuration.php b/src/Configuration.php index e05246f..7224ad8 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -16,7 +16,7 @@ */ final class Configuration implements ConfigurationInterface { - public const LIBRARY_VERSION = 'v4.0.1'; + public const LIBRARY_VERSION = 'v4.0.2'; public const API_VERSION = '0.7'; public const API_BASE_URL = 'api.uploadcare.com'; public const USER_AGENT_TEMPLATE = 'PHPUploadcare/{lib-version}/{publicKey} (PHP/{lang-version})';