Skip to content

Commit

Permalink
Version 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Feb 23, 2017
1 parent 86074db commit 8b89be2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

1.6.2 / 2017-02-23
==================

* Add URL authentication.
* Rename `auth_token`.
* Support nested values in `CLOUDINARY_URL`
* Fix archive test.
* Add a test for `build_eager`.

1.6.1 / 2017-02-16
==================

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.6.1",
"version": "1.6.2",
"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.6.1";
const VERSION = "1.6.2";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.6.1";
const USER_AGENT = "CloudinaryPHP/1.6.2";

/**
* 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 8b89be2

Please sign in to comment.