diff --git a/CHANGELOG.md b/CHANGELOG.md index d5e4a419..cba77386 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 ================== diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index 9468b518..9122dacf 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -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 """ diff --git a/setup.py b/setup.py index 5ebbc3f0..07ab5be5 100644 --- a/setup.py +++ b/setup.py @@ -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()