Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed May 3, 2017
1 parent fd3d2d5 commit 641b090
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@

1.8.0 / 2017-05-03
==================

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

* Advanced search API
* Add `async` parameter to upload parameters.

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

* Update tests to use `TestHelper`
* Add compatibility for newer PHPUnit versions

1.7.2 / 2017-04-03
==================

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.7.2",
"version": "1.8.0",
"description": "Cloudinary PHP SDK",
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
"type": "library",
Expand Down
4 changes: 2 additions & 2 deletions src/Cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ 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.7.2";
const VERSION = "1.8.0";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.7.2";
const USER_AGENT = "CloudinaryPHP/1.8.0";

/**
* Additional information to be passed with the USER_AGENT, e.g. "CloudinaryMagento/1.0.1". This value is set in platform-specific
Expand Down

0 comments on commit 641b090

Please sign in to comment.