diff --git a/CHANGELOG.md b/CHANGELOG.md index 49fac6fa..f52b80ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,21 @@ +1.3.2 / 2016-03-23 +================== + +New functionality and features +------------------------------ + + * Support conditional transformations via the if parameter + * Process all upload parameters for explicit API. + +Other Changes +------------- + + * Fix categorization test criteria + * Delete resources by tag after tests + * Replace `ARCHIVE_TAG` with `TEST_TAG` + * Add `TEST_IMAGE` and `TEST_TAG` + 1.3.1 / 2016-02-03 ================== diff --git a/cloudinary.egg-info/PKG-INFO b/cloudinary.egg-info/PKG-INFO index 5b62a21e..588c3c64 100644 --- a/cloudinary.egg-info/PKG-INFO +++ b/cloudinary.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: cloudinary -Version: 1.3.1 +Version: 1.3.2 Summary: Python interface to Cloudinary Home-page: http://cloudinary.com Author: Cloudinary diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index 1de3229b..7e0d9ea7 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -11,7 +11,7 @@ SHARED_CDN = AKAMAI_SHARED_CDN CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" -VERSION = "1.3.1" +VERSION = "1.3.2" USER_AGENT = "CloudinaryPython/" + VERSION """ :const: USER_AGENT """ diff --git a/setup.py b/setup.py index a12ea0fe..9fbea203 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '1.3.1' +version = '1.3.2' setup(name='cloudinary', version=version,