Skip to content

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Jan 19, 2017
1 parent b44b4fc commit 1ba1daa
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.5.0 / 2017-01-19
==================

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

* New `add_context` & `remove_all_context` API
* support suffix url for private images
* Escape ‘|' and ‘=‘ characters in context values
* Support ‘iw’ and ‘ih’ transformation parameters for indicating initial width or height
* Support `to_type` parameter in `rename`

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

* Fix folder listing test
* Add test for {effect: art:incognito}
* expending retrieved list of transformation to allow test to pass properly
* Add test case for 'to_type' + fix face_coordintes exceeding image boundaries
* Fix typo in the archive `expires_at` parameter
* Remove `$name` from call to `list_streaming_profiles`

1.4.2 / 2016-10-28
==================

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.4.2",
"version": "1.5.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 @@ -10,7 +10,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.4.2";
const VERSION = "1.5.0";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.1.4";

Expand Down

0 comments on commit 1ba1daa

Please sign in to comment.