Skip to content

Commit

Permalink
Version 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed Dec 16, 2018
1 parent 3b42257 commit fdb6b22
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions 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
===================

Expand Down
2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Expand Up @@ -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 """
Expand Down
2 changes: 1 addition & 1 deletion 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()
Expand Down

0 comments on commit fdb6b22

Please sign in to comment.