Skip to content

Commit 20f6a3f

Browse files
Version 1.16.0
1 parent bb11c5e commit 20f6a3f

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

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

2+
1.16.0 / 2019-05-13
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
* Add `derived_next_cursor` parameter to `resource` admin API
8+
* Add `filename` option to `upload` and `upload_large` APIs
9+
* Add `force_version` option to `cloudinary_url`
10+
11+
Other Changes
12+
-------------
13+
14+
* Fix `False` value handling in `CloudinaryField`
15+
* Fix acl and url escaping in `auth_token` generation
16+
* Fix base64 data validation regex
17+
* Fix transformations API call
18+
* Fix error raising in uploader for invalid server response
19+
* Ignore URL in AuthToken generation if ACL is provided
20+
* Print traceback if error in tearDown methods
21+
* Support per corner values in `radius` transformation parameter
22+
* Fix basic sample incoherent response output
23+
* Fix user-agent unit test assertion
24+
225
1.15.0 / 2018-12-16
326
===================
427

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
SHARED_CDN = AKAMAI_SHARED_CDN
3030
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
3131

32-
VERSION = "1.15.0"
32+
VERSION = "1.16.0"
3333

3434
USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
3535
""" :const: USER_AGENT """

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

3-
version = "1.15.0"
3+
version = "1.16.0"
44

55
with open('README.rst') as file:
66
long_description = file.read()

0 commit comments

Comments
 (0)