File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1
1
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
+
2
30
1.10.0 / 2017-12-20
3
31
===================
4
32
Original file line number Diff line number Diff line change 22
22
SHARED_CDN = AKAMAI_SHARED_CDN
23
23
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
24
24
25
- VERSION = "1.10 .0"
25
+ VERSION = "1.11 .0"
26
26
USER_AGENT = "CloudinaryPython/" + VERSION
27
27
""" :const: USER_AGENT """
28
28
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
- version = '1.10 .0'
3
+ version = '1.11 .0'
4
4
5
5
with open ('README.rst' ) as file :
6
6
long_description = file .read ()
You can’t perform that action at this time.
0 commit comments