Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Mar 22, 2016
1 parent 080b044 commit 94582b6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@

1.3.1 / 2016-03-22
==================

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

* Conditional Transformations

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

* Fix categorization test
* Use original file name as `public_id` for server side upload (sample project).
* Remove support for `exclusive` in `add_tag`
* Pass parameters in body unless it's a `get` call
* Support PHP versions before 5.4
* Use `isset` instead of `!= NULL`

1.3.0 / 2016-01-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.3.0",
"version": "1.3.1",
"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.3.0";
const VERSION = "1.3.1";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.1.4";

Expand Down

0 comments on commit 94582b6

Please sign in to comment.