Skip to content

Commit 641b090

Browse files
author
Amir Tocker
committed
Version 1.8.0
1 parent fd3d2d5 commit 641b090

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

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

2+
1.8.0 / 2017-05-03
3+
==================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Advanced search API
9+
* Add `async` parameter to upload parameters.
10+
11+
Other Changes
12+
-------------
13+
14+
* Update tests to use `TestHelper`
15+
* Add compatibility for newer PHPUnit versions
16+
217
1.7.2 / 2017-04-03
318
==================
419

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.7.2",
3+
"version": "1.8.0",
44
"description": "Cloudinary PHP SDK",
55
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
66
"type": "library",

src/Cloudinary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ class Cloudinary {
1111
const RANGE_VALUE_RE = '/^(?P<value>(\d+\.)?\d+)(?P<modifier>[%pP])?$/';
1212
const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/';
1313

14-
const VERSION = "1.7.2";
14+
const VERSION = "1.8.0";
1515
/** @internal Do not change this value */
16-
const USER_AGENT = "CloudinaryPHP/1.7.2";
16+
const USER_AGENT = "CloudinaryPHP/1.8.0";
1717

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

0 commit comments

Comments
 (0)