Skip to content

Commit

Permalink
Version 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Oct 10, 2016
1 parent 66b9511 commit 6a8f2db
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

2.1.5 / 2016-10-10
==================

* Refactor `grunt version`
* Test width value 'ow' and height value 'oh'
* Update documentation
* Merge branch 'dpr_auto'
* preview URL shows dpr_1.0 when setting DPR to auto
* Re-introduce the copy:docs task
* Guard for null or empty param in `cloudinary_update` and `processImageTags` as mentioned in #99
* Fix documentation for `processImageTags` as mentioned in #99

2.1.4 / 2016-10-06
==================

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.1.4",
"version": "2.1.5",
"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.1.4
* Cloudinary's JavaScript library - Version 2.1.5
* Copyright Cloudinary
* see https://github.com/cloudinary/cloudinary_js
*
Expand Down Expand Up @@ -2866,7 +2866,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.1.4";
VERSION = "2.1.5";

CF_SHARED_CDN = "d3jpl91pxevbkh.cloudfront.net";

Expand Down Expand Up @@ -4094,7 +4094,7 @@ var slice = [].slice,
TextLayer: TextLayer,
SubtitlesLayer: SubtitlesLayer,
Cloudinary: Cloudinary,
VERSION: "2.1.4",
VERSION: "2.1.5",
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.1.4",
"version": "2.1.5",
"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.1.4"
VERSION = "2.1.5"
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 6a8f2db

Please sign in to comment.