Skip to content

Commit 40a3187

Browse files
Version 1.14.0
1 parent de030c7 commit 40a3187

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

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

2+
1.14.0 / 2018-10-11
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
* Add support of custom codecs in video tag
8+
* Add Google Cloud Storage protocol support in upload
9+
* Add support of Python 3.7 and Django 2.1
10+
* Add support for using tuples for list arguments
11+
12+
Other Changes
13+
-------------
14+
* Rename `custom_action` to `custom_function`
15+
* Test unicode filename
16+
217
1.13.0 / 2018-10-01
318
===================
419

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
SHARED_CDN = AKAMAI_SHARED_CDN
3030
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
3131

32-
VERSION = "1.13.0"
32+
VERSION = "1.14.0"
3333

3434
USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
3535
""" :const: USER_AGENT """

setup.py

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

3-
version = "1.13.0"
3+
version = "1.14.0"
44

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

0 commit comments

Comments
 (0)