Skip to content

Commit

Permalink
Version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Dec 10, 2017
1 parent 15a96c2 commit a4cf15c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@

2.4.0 / 2017-12-09
==================

New functionality and features
------------------------------

* Support fetch URL in layers
* Support SEO suffix for private images

Other Changes
-------------

* Add documentation
* Refactor `btoa`; Add POJO `isFunction`
* Update Node version list to test; Remove env vars
* Update dependencies and configuration
* Fix CLOUDINARY_URL regex
* Update npm installation instructions
* Update dependencies

2.3.0 / 2017-03-27
==================

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudinary",
"version": "2.3.0",
"version": "2.4.0",
"title": "Cloudinary jQuery Plugin",
"authors": [
{
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.cloudinary.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* Cloudinary's JavaScript library - Version 2.3.0
* Cloudinary's JavaScript library - Version 2.4.0
* Copyright Cloudinary
* see https://github.com/cloudinary/cloudinary_js
*
Expand Down Expand Up @@ -3462,7 +3462,7 @@ var slice = [].slice,
Cloudinary = (function() {
var AKAMAI_SHARED_CDN, CF_SHARED_CDN, DEFAULT_POSTER_OPTIONS, DEFAULT_VIDEO_SOURCE_TYPES, OLD_AKAMAI_SHARED_CDN, SHARED_CDN, VERSION, absolutize, applyBreakpoints, cdnSubdomainNumber, closestAbove, cloudinaryUrlPrefix, defaultBreakpoints, finalizeResourceType, findContainerWidth, maxWidth, updateDpr;

VERSION = "2.3.0";
VERSION = "2.4.0";

CF_SHARED_CDN = "d3jpl91pxevbkh.cloudfront.net";

Expand Down Expand Up @@ -4702,7 +4702,7 @@ var slice = [].slice,
TextLayer: TextLayer,
SubtitlesLayer: SubtitlesLayer,
Cloudinary: Cloudinary,
VERSION: "2.3.0",
VERSION: "2.4.0",
CloudinaryJQuery: CloudinaryJQuery
};
return cloudinary;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudinary_js",
"version": "2.3.0",
"version": "2.4.0",
"description": "Cloudinary streamlines your web application’s image manipulation needs. Cloudinary's cloud-based servers automate image uploading, resizing, cropping, optimizing, sprite generation and more. Cloudinary's jQuery plugin allows direct uploading from the browser to the cloud and dynamic cloud-based image transformations and effects.",
"main": "js/jquery.cloudinary.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/cloudinary.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class Cloudinary
VERSION = "2.3.0"
VERSION = "2.4.0"
CF_SHARED_CDN = "d3jpl91pxevbkh.cloudfront.net"
OLD_AKAMAI_SHARED_CDN = "cloudinary-a.akamaihd.net"
AKAMAI_SHARED_CDN = "res.cloudinary.com"
Expand Down

0 comments on commit a4cf15c

Please sign in to comment.