Skip to content

Commit

Permalink
Version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed May 10, 2018
1 parent 9ee7cb0 commit aca3177
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@

1.10.0 / 2018-05-10
===================

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

* Add `srcset` and `sizes` attributes to the `img` tag (#117)
* Support special characters in public IDs, tags, etc in Admin API calls
* Add php version to user agent (#114)

Other Changes
-------------
* Fix URL-encode parts of api-uri
* Add `test_url_encoding` unit test
* Fix `test_transformation_cursor_results` unit test
* Fix `test_raw_conversion` unit test
* Fix streaming profiles cleanup after unit tests
* Add PHPDoc to Cloudinary\Api and Exceptions
* Update PHP version requirement

1.9.0 / 2018-03-12
==================

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.9.0",
"version": "1.10.0",
"description": "Cloudinary PHP SDK",
"keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"],
"type": "library",
Expand Down
2 changes: 1 addition & 1 deletion src/Cloudinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ 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.9.0";
const VERSION = "1.10.0";

/**
* Contains information about SDK user agent. Passed to the Cloudinary servers.
Expand Down

0 comments on commit aca3177

Please sign in to comment.