diff --git a/CHANGELOG.md b/CHANGELOG.md index 376f1559..ced11b37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +2.11.0 / 2023-05-23 +================== + +New functionality and features +------------------------------ + + * Add support for related assets Admin APIs + * Add support for `extra_headers` option in Upload and Admin API + +Other Changes +------------- + + * Fix Guzzle compatibility issues + * Update analytics token algorithm + 2.10.2 / 2023-02-01 ================== diff --git a/composer.json b/composer.json index ba2c90a9..9d91f734 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "cloudinary/cloudinary_php", - "version": "2.10.2", + "version": "2.11.0", "description": "Cloudinary PHP SDK", "keywords": [ "cloudinary", diff --git a/docs/sami_config.php b/docs/sami_config.php index 2b76beb2..7144e6d4 100644 --- a/docs/sami_config.php +++ b/docs/sami_config.php @@ -14,7 +14,7 @@ 'theme' => 'cloudinary', 'template_dirs' => [$docsDir . 'themes'], 'title' => 'Cloudinary PHP SDK', - 'version' => '2.10.2', + 'version' => '2.11.0', 'build_dir' => $docsDir . 'build', 'cache_dir' => $docsDir . 'cache', 'default_opened_level' => 1, diff --git a/src/Cloudinary.php b/src/Cloudinary.php index 9708e4e6..b724709e 100644 --- a/src/Cloudinary.php +++ b/src/Cloudinary.php @@ -34,7 +34,7 @@ class Cloudinary * * @var string VERSION */ - const VERSION = '2.10.2'; + const VERSION = '2.11.0'; /** * Defines the Cloudinary cloud details and other global configuration options.