Skip to content

Commit ad8b132

Browse files
author
Amir Tocker
committed
Version 1.11.0
1 parent d8525bf commit ad8b132

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

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

2+
1.11.0 / 2018-03-12
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Support url suffix for shared CDN
9+
* Add `remove_all_tags` to `uploader`
10+
* Add `add_context` and `remove_all_context` to `uploader`
11+
* Add `access_control` parameter to uploader `upload` and api `update`
12+
* Update `_get_val_from_object` method. Fixes #131
13+
14+
Other Changes
15+
-------------
16+
17+
* Add `TestCloudinaryFileField` unit test
18+
* Add verbosity to Django unit tests in tox.ini
19+
* Fix categorization test
20+
* Merge branch 'add-width-height-fields'. Merges #62
21+
* Add `test_pre_save` for `CloudinaryField`
22+
* CloudinaryField width_field and height_field attributes like in ImageField
23+
* Add `test_upload_file_io_without_filename` unit test
24+
* Support FileIO upload w/preexisting OS descriptors
25+
* Remove default value for `public_ids` argument
26+
* Add `test_effect_art_incognito` unit test
27+
* Fix `test_download_zip_url_options` unit test with custom upload prefix
28+
* Escape `|` and `=` characters in API context parameter values
29+
230
1.10.0 / 2017-12-20
331
===================
432

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SHARED_CDN = AKAMAI_SHARED_CDN
2323
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2424

25-
VERSION = "1.10.0"
25+
VERSION = "1.11.0"
2626
USER_AGENT = "CloudinaryPython/" + VERSION
2727
""" :const: USER_AGENT """
2828

setup.py

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

3-
version = '1.10.0'
3+
version = '1.11.0'
44

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

0 commit comments

Comments
 (0)