Skip to content

Commit d0d3300

Browse files
author
Amir Tocker
committed
Version 1.7.1
1 parent f2dd12b commit d0d3300

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

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

2+
1.7.1 / 2017-03-13
3+
==================
4+
5+
* Update phpunit to 5.7.*
6+
* Update travis.yml to test 5.6 and 7.0 (matching phpunit)
7+
* Don't normalize negative numbers. Fixed #68.
8+
29
1.7.0 / 2017-03-09
310
==================
411

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