Skip to content

Commit 8b89be2

Browse files
author
Amir Tocker
committed
Version 1.6.2
1 parent 86074db commit 8b89be2

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

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

2+
1.6.2 / 2017-02-23
3+
==================
4+
5+
* Add URL authentication.
6+
* Rename `auth_token`.
7+
* Support nested values in `CLOUDINARY_URL`
8+
* Fix archive test.
9+
* Add a test for `build_eager`.
10+
211
1.6.1 / 2017-02-16
312
==================
413

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