Skip to content

Commit

Permalink
Version 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed May 13, 2019
1 parent ca7d2fc commit d4c947f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@

1.14.0 / 2019-05-13
===================

New functionality and features
------------------------------
* Add `delete_folder` admin API
* Add `filename` parameter to `upload` API
* Add `derived_next_cursor` to `resource` admin API
* Add `SignatureVerifier` class
* Add `force_version` option to delivery urls

Other Changes
-------------
* Fix notice message in `generate_sprite` method
* Fix acl and url escaping in auth_token generation
* Ignore URL in AuthToken generation if ACL is provided
* Fix base64 regex validation template
* Add support of PHP 7.3
* Improve error handling when trying to upload non-existing file.
* Add `test_secure_distribution_from_config` unit test
* Remove redundant quotes in `update_version.sh`

1.13.0 / 2018-12-16
===================

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudinary/cloudinary_php",
"version": "1.13.0",
"version": "1.14.0",
"description": "Cloudinary PHP SDK",
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
"type": "library",
Expand Down
2 changes: 1 addition & 1 deletion src/Cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Cloudinary
const RANGE_VALUE_RE = '/^(?P<value>(\d+\.)?\d+)(?P<modifier>[%pP])?$/';
const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/';

const VERSION = "1.13.0";
const VERSION = "1.14.0";

/**
* @internal
Expand Down

0 comments on commit d4c947f

Please sign in to comment.