Skip to content

Commit

Permalink
Version 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Apr 3, 2017
1 parent f316049 commit 330b6b3
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.7.2 / 2017-04-03
==================

* Add update ocr parameters test
* Merge pull request #71 from jtabet/fix-floats-issue
* Added a number_format on float values in the transformation string
* Add ocr parameters tests
* Fix variables order. Add variables order tests.

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

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.1",
"version": "1.7.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.7.1";
const VERSION = "1.7.2";
/** @internal Do not change this value */
const USER_AGENT = "CloudinaryPHP/1.7.1";
const USER_AGENT = "CloudinaryPHP/1.7.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 330b6b3

Please sign in to comment.