Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Mar 13, 2017
1 parent f2dd12b commit d0d3300
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

1.7.1 / 2017-03-13
==================

* Update phpunit to 5.7.*
* Update travis.yml to test 5.6 and 7.0 (matching phpunit)
* Don't normalize negative numbers. Fixed #68.

1.7.0 / 2017-03-09
==================

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

/**
* 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 d0d3300

Please sign in to comment.