Skip to content

Commit ffde320

Browse files
author
Amir Tocker
committed
Version 1.10.0
1 parent 80f9bdf commit ffde320

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

CHANGELOG.md

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

2+
1.10.0 / 2017-12-20
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add Publish API
9+
* Add `notification_url` param for update API
10+
* Add `transformations` parameter to delete_resources APIs
11+
* Add support for fetch overlay/underlay
12+
* Add `allow_missing` and `skip_transformation_name` parameters to Archive API
13+
* Add support of `quality_override` param for update and explicit API
14+
15+
Other Changes
16+
-------------
17+
18+
* Update .gitignore
19+
* Print cloud name when testing
20+
* Pass all environment vars to tox tests
21+
* Add documentation to test helpers
22+
* Use dict for Api params
23+
* Add test helper methods
24+
* Pass options to cloudinary_api_url when creating an archive URL. Fixes #130
25+
* Add `max_results` to transformations test
26+
* Add test for cursor of transformations (#123)
27+
228
1.9.0 / 2017-12-03
329
==================
430

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.9.0"
25+
VERSION = "1.10.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.9.0'
3+
version = '1.10.0'
44

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

0 commit comments

Comments
 (0)