Skip to content

Commit 21cf3a3

Browse files
Version 1.15.0
1 parent c80c5ec commit 21cf3a3

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11

2+
1.15.0 / 2019-10-02
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add `create_folder` admin API
9+
* Add `max_results` and `next_cursor` for folders APIs
10+
* Add `live` parameter to `create_upload_preset` and `update_upload_preset` APIs
11+
* Add `cinemagraph_analysis` parameter
12+
* Add `duration` and `initial_duration` predefined variables
13+
* Add `pow` transformation operator
14+
* Allow generating archive with multiple resource types
15+
16+
Other Changes
17+
-------------
18+
19+
* Fix transformations API call
20+
* Fix `AuthToken` `UNSAFE` invalid regex
21+
* Fix `normalize_expression` to ignore predefined variables
22+
* Validate `CLOUDINARY_URL` scheme
23+
* Fix travis build
24+
225
1.14.0 / 2019-05-13
326
===================
427

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudinary/cloudinary_php",
3-
"version": "1.14.0",
3+
"version": "1.15.0",
44
"description": "Cloudinary PHP SDK",
55
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
66
"type": "library",

src/Cloudinary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Cloudinary
1212
const RANGE_VALUE_RE = '/^(?P<value>(\d+\.)?\d+)(?P<modifier>[%pP])?$/';
1313
const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/';
1414

15-
const VERSION = "1.14.0";
15+
const VERSION = "1.15.0";
1616

1717
/**
1818
* @internal

0 commit comments

Comments
 (0)