diff --git a/CHANGELOG.md b/CHANGELOG.md index 234b4379..9d34177d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +2.1.1 / 2021-03-17 +================== + + * Fix video overlay + * Improve `AuthToken` validation, require at least `url` or `acl` + * Improve unit tests, use a mock client to check multipart options + * Remove unused import in CreativeTest.php + 2.1.0 / 2021-03-10 ================== diff --git a/composer.json b/composer.json index 8fce95e8..0e1b5e17 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "cloudinary/cloudinary_php", - "version": "2.1.0", + "version": "2.1.1", "description": "Cloudinary PHP SDK", "keywords": [ "cloudinary", diff --git a/docs/sami_config.php b/docs/sami_config.php index 34a1dad8..01e304a2 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.1.0', + 'version' => '2.1.1', 'build_dir' => $docsDir . 'build', 'cache_dir' => $docsDir . 'cache', 'default_opened_level' => 1, diff --git a/src/Cloudinary.php b/src/Cloudinary.php index bb7c819d..81141012 100644 --- a/src/Cloudinary.php +++ b/src/Cloudinary.php @@ -33,7 +33,7 @@ class Cloudinary * * @var string VERSION */ - const VERSION = '2.1.0'; + const VERSION = '2.1.1'; /** * Defines the Cloudinary cloud details and other global configuration options.