Skip to content

Commit e2646b9

Browse files
Version 1.17.0
1 parent f86f83f commit e2646b9

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

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

2+
1.17.0 / 2019-07-31
3+
===================
4+
New functionality and features
5+
------------------------------
6+
* Add `delete_folder` admin API
7+
* Add `live` parameter to `create_upload_preset` and `update_upload_preset` admin APIs
8+
* Add api options to `CloudinaryField`
9+
* Allow generating archive with multiple resource types
10+
* Add support of Django2.2
11+
12+
Other Changes
13+
-------------
14+
* Fix missing options in CloudinaryJsFileField
15+
* Fix CloudinaryField options consumption
16+
* Bump urllib3 from 1.19 to 1.24.2 in /samples/gae
17+
218
1.16.0 / 2019-05-13
319
===================
420

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.16.0"
32+
VERSION = "1.17.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.16.0"
3+
version = "1.17.0"
44

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

0 commit comments

Comments
 (0)