From 442cba07f093cdc060038628daa67f013e3dc792 Mon Sep 17 00:00:00 2001 From: Constantine Nathanson Date: Sun, 16 Dec 2018 17:58:27 +0200 Subject: [PATCH] "Version 1.13.0" --- CHANGELOG.md | 21 +++++++++++++++++++++ composer.json | 2 +- src/Cloudinary.php | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4285ad2b..1daaacdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,25 @@ +1.13.0 / 2018-12-16 +=================== + +New functionality and features +------------------------------ + + * Add custom `pre` function support + * Add `fps` video transformation parameter + * Add `keyframe_interval` video transformation parameter + * Add `quality_analysis` upload parameter + +Other Changes +------------- + + * Fix file extension in `upload_large` + * Fix for Uploader.php to prevent uploads failing + * Fix missing padding in `base64url_encode` + * Mock upload presets tests + * Fix `test_detection` unit test + * Remove secure variables from travis.yml + 1.12.0 / 2018-10-11 =================== diff --git a/composer.json b/composer.json index 8702eba1..5fb07f61 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "cloudinary/cloudinary_php", - "version": "1.12.0", + "version": "1.13.0", "description": "Cloudinary PHP SDK", "keywords": ["cloudinary", "sdk", "cloud", "image management", "cdn"], "type": "library", diff --git a/src/Cloudinary.php b/src/Cloudinary.php index e2551a1c..6066048b 100644 --- a/src/Cloudinary.php +++ b/src/Cloudinary.php @@ -12,7 +12,7 @@ class Cloudinary const RANGE_VALUE_RE = '/^(?P(\d+\.)?\d+)(?P[%pP])?$/'; const RANGE_RE = '/^(\d+\.)?\d+[%pP]?\.\.(\d+\.)?\d+[%pP]?$/'; - const VERSION = "1.12.0"; + const VERSION = "1.13.0"; /** * @internal