Skip to content

Commit 57cd67c

Browse files
author
Amir Tocker
committed
Version 1.6.0
1 parent 215a0f3 commit 57cd67c

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

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

2+
1.6.0 / 2017-01-30
3+
==================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add Akamai token generator
9+
10+
Other Changes
11+
-------------
12+
13+
* Add `max_results=500` to `api.resources` invocation in tests
14+
* Double encode `,` and `/` in text layers
15+
* Handle empty CloudinaryField values. Fixes #81, Related to #82
16+
* Revert to in-memory database for tests
17+
* Support passing parameters to both `setup.py test` and `django-admin.py test`
18+
* Set `DJANGO_SETTINGS_MODULE` only in Django tests
19+
* Test for string_types instead of str.
20+
* Use `disable_warning()` in network tests.
21+
222
1.5.0 / 2016-11-17
323
==================
424

cloudinary.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.1
22
Name: cloudinary
3-
Version: 1.5.0
3+
Version: 1.6.0
44
Summary: Python and Django SDK for Cloudinary
55
Home-page: http://cloudinary.com
66
Author: Cloudinary

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
SHARED_CDN = AKAMAI_SHARED_CDN
1616
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1717

18-
VERSION = "1.5.0"
18+
VERSION = "1.6.0"
1919
USER_AGENT = "CloudinaryPython/" + VERSION
2020
""" :const: USER_AGENT """
2121

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.5.0'
3+
version = '1.6.0'
44

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

0 commit comments

Comments
 (0)