diff --git a/CHANGELOG.md b/CHANGELOG.md index 748630ef..15f6c983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,27 @@ +1.15.0 / 2018-12-16 +=================== + +New functionality and features +------------------------------ + + * Add custom `pre` function support + * Add `fps` video transformation parameter + * Add `quality_analysis` upload parameter + * Add `font_antialiasing` and `font_hinting` text style parameters + * Add `named` parameter to `transformations` admin API + * Add `to_type` parameter to `rename` upload API + +Other Changes +------------- + + * Fix `AuthToken` default start time (use epoch instead of local time) + * Validate `keyframe_interval` parameter value + * Add padding in `base64url_encode` + * Mock upload presets tests + * Fix `test_detection` unit test + * Fix video tag tests. + 1.14.0 / 2018-10-11 =================== diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index 8907ced3..994571ba 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -29,7 +29,7 @@ SHARED_CDN = AKAMAI_SHARED_CDN CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" -VERSION = "1.14.0" +VERSION = "1.15.0" USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version()) """ :const: USER_AGENT """ diff --git a/setup.py b/setup.py index 4fa75191..3c154ee9 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -version = "1.14.0" +version = "1.15.0" with open('README.rst') as file: long_description = file.read()