Skip to content

Commit

Permalink
Version 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed Jul 31, 2019
1 parent f86f83f commit e2646b9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

1.17.0 / 2019-07-31
===================
New functionality and features
------------------------------
* Add `delete_folder` admin API
* Add `live` parameter to `create_upload_preset` and `update_upload_preset` admin APIs
* Add api options to `CloudinaryField`
* Allow generating archive with multiple resource types
* Add support of Django2.2

Other Changes
-------------
* Fix missing options in CloudinaryJsFileField
* Fix CloudinaryField options consumption
* Bump urllib3 from 1.19 to 1.24.2 in /samples/gae

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

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

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

0 comments on commit e2646b9

Please sign in to comment.