Skip to content

Commit

Permalink
Version 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed Oct 2, 2019
1 parent c80c5ec commit 21cf3a3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@

1.15.0 / 2019-10-02
===================

New functionality and features
------------------------------

* Add `create_folder` admin API
* Add `max_results` and `next_cursor` for folders APIs
* Add `live` parameter to `create_upload_preset` and `update_upload_preset` APIs
* Add `cinemagraph_analysis` parameter
* Add `duration` and `initial_duration` predefined variables
* Add `pow` transformation operator
* Allow generating archive with multiple resource types

Other Changes
-------------

* Fix transformations API call
* Fix `AuthToken` `UNSAFE` invalid regex
* Fix `normalize_expression` to ignore predefined variables
* Validate `CLOUDINARY_URL` scheme
* Fix travis build

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

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.14.0",
"version": "1.15.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.14.0";
const VERSION = "1.15.0";

/**
* @internal
Expand Down

0 comments on commit 21cf3a3

Please sign in to comment.