Skip to content

Commit

Permalink
Version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Dec 20, 2017
1 parent 80f9bdf commit ffde320
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@

1.10.0 / 2017-12-20
===================

New functionality and features
------------------------------

* Add Publish API
* Add `notification_url` param for update API
* Add `transformations` parameter to delete_resources APIs
* Add support for fetch overlay/underlay
* Add `allow_missing` and `skip_transformation_name` parameters to Archive API
* Add support of `quality_override` param for update and explicit API

Other Changes
-------------

* Update .gitignore
* Print cloud name when testing
* Pass all environment vars to tox tests
* Add documentation to test helpers
* Use dict for Api params
* Add test helper methods
* Pass options to cloudinary_api_url when creating an archive URL. Fixes #130
* Add `max_results` to transformations test
* Add test for cursor of transformations (#123)

1.9.0 / 2017-12-03
==================

Expand Down
2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SHARED_CDN = AKAMAI_SHARED_CDN
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"

VERSION = "1.9.0"
VERSION = "1.10.0"
USER_AGENT = "CloudinaryPython/" + VERSION
""" :const: USER_AGENT """

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '1.9.0'
version = '1.10.0'

with open('README.rst') as file:
long_description = file.read()
Expand Down

0 comments on commit ffde320

Please sign in to comment.