Skip to content

Commit 95a1e1d

Browse files
author
Amir Tocker
committed
Version 1.7.0
1 parent 4605396 commit 95a1e1d

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

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

2+
1.7.0 / 2017-03-09
3+
==================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* User defined variables
9+
* Add `async` parameter to upload params (#65)
10+
* Add `fetch` prefix to overlay path
11+
* Support fetch overlay underlay
12+
13+
Other Changes
14+
-------------
15+
16+
* Rename items and add missing variables.
17+
218
1.6.2 / 2017-02-23
319
==================
420

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.6.2",
3+
"version": "1.7.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.6.2";
14+
const VERSION = "1.7.0";
1515
/** @internal Do not change this value */
16-
const USER_AGENT = "CloudinaryPHP/1.6.2";
16+
const USER_AGENT = "CloudinaryPHP/1.7.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)