Skip to content

Commit

Permalink
Version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Jan 30, 2017
1 parent 3ca8dfc commit a72d12e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@

1.6.0 / 2017-01-30
==================

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

* Add Akamai token generator

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

* Revert using VERSION to set USER_AGENT. Fixes #58.
* Fix USER_AGENT version.

1.5.0 / 2017-01-19
==================

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.5.0",
"version": "1.6.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 @@ -12,9 +12,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.5.0";
const VERSION = "1.6.0";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.5.0";
const USER_AGENT = "CloudinaryPHP/1.6.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 a72d12e

Please sign in to comment.