Skip to content

Commit 98de846

Browse files
Version 1.18.0
1 parent 56570ee commit 98de846

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

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

2+
1.18.0 / 2019-10-02
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add API proxy support
9+
* Add `duration` and `initial_duration` predefined variables support
10+
* Add support for `pow` operator
11+
* Add `next_cursor` and `max_results` for `root_folders` and `subfolders` API functions
12+
* Add `cinemagraph_analysis` as a parameter for `upload`, `explicit`, and `resource` methods
13+
* Add `create_folder` function to the Admin API
14+
15+
Other Changes
16+
-------------
17+
* Add .vscode to gitignore
18+
219
1.17.0 / 2019-07-31
320
===================
421
New functionality and features

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
SHARED_CDN = AKAMAI_SHARED_CDN
3535
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
3636

37-
VERSION = "1.17.0"
37+
VERSION = "1.18.0"
3838

3939
USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
4040
""" :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.17.0"
3+
version = "1.18.0"
44

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

0 commit comments

Comments
 (0)