Skip to content

Commit fdb6b22

Browse files
Version 1.15.0
1 parent 3b42257 commit fdb6b22

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11

2+
1.15.0 / 2018-12-16
3+
===================
4+
5+
New functionality and features
6+
------------------------------
7+
8+
* Add custom `pre` function support
9+
* Add `fps` video transformation parameter
10+
* Add `quality_analysis` upload parameter
11+
* Add `font_antialiasing` and `font_hinting` text style parameters
12+
* Add `named` parameter to `transformations` admin API
13+
* Add `to_type` parameter to `rename` upload API
14+
15+
Other Changes
16+
-------------
17+
18+
* Fix `AuthToken` default start time (use epoch instead of local time)
19+
* Validate `keyframe_interval` parameter value
20+
* Add padding in `base64url_encode`
21+
* Mock upload presets tests
22+
* Fix `test_detection` unit test
23+
* Fix video tag tests.
24+
225
1.14.0 / 2018-10-11
326
===================
427

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
SHARED_CDN = AKAMAI_SHARED_CDN
3030
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
3131

32-
VERSION = "1.14.0"
32+
VERSION = "1.15.0"
3333

3434
USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
3535
""" :const: USER_AGENT """

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

3-
version = "1.14.0"
3+
version = "1.15.0"
44

55
with open('README.rst') as file:
66
long_description = file.read()

0 commit comments

Comments
 (0)