Skip to content

Commit

Permalink
Version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Mar 12, 2018
1 parent d8525bf commit ad8b132
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@

1.11.0 / 2018-03-12
===================

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

* Support url suffix for shared CDN
* Add `remove_all_tags` to `uploader`
* Add `add_context` and `remove_all_context` to `uploader`
* Add `access_control` parameter to uploader `upload` and api `update`
* Update `_get_val_from_object` method. Fixes #131

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

* Add `TestCloudinaryFileField` unit test
* Add verbosity to Django unit tests in tox.ini
* Fix categorization test
* Merge branch 'add-width-height-fields'. Merges #62
* Add `test_pre_save` for `CloudinaryField`
* CloudinaryField width_field and height_field attributes like in ImageField
* Add `test_upload_file_io_without_filename` unit test
* Support FileIO upload w/preexisting OS descriptors
* Remove default value for `public_ids` argument
* Add `test_effect_art_incognito` unit test
* Fix `test_download_zip_url_options` unit test with custom upload prefix
* Escape `|` and `=` characters in API context parameter values

1.10.0 / 2017-12-20
===================

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

VERSION = "1.10.0"
VERSION = "1.11.0"
USER_AGENT = "CloudinaryPython/" + 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 setup, find_packages

version = '1.10.0'
version = '1.11.0'

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

0 comments on commit ad8b132

Please sign in to comment.