Skip to content

Commit

Permalink
Version 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed May 13, 2019
1 parent bb11c5e commit 20f6a3f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@

1.16.0 / 2019-05-13
===================

New functionality and features
------------------------------
* Add `derived_next_cursor` parameter to `resource` admin API
* Add `filename` option to `upload` and `upload_large` APIs
* Add `force_version` option to `cloudinary_url`

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

* Fix `False` value handling in `CloudinaryField`
* Fix acl and url escaping in `auth_token` generation
* Fix base64 data validation regex
* Fix transformations API call
* Fix error raising in uploader for invalid server response
* Ignore URL in AuthToken generation if ACL is provided
* Print traceback if error in tearDown methods
* Support per corner values in `radius` transformation parameter
* Fix basic sample incoherent response output
* Fix user-agent unit test assertion

1.15.0 / 2018-12-16
===================

Expand Down
2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
SHARED_CDN = AKAMAI_SHARED_CDN
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"

VERSION = "1.15.0"
VERSION = "1.16.0"

USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
""" :const: USER_AGENT """
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

version = "1.15.0"
version = "1.16.0"

with open('README.rst') as file:
long_description = file.read()
Expand Down

0 comments on commit 20f6a3f

Please sign in to comment.