Skip to content

Commit

Permalink
Version 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tocker committed Mar 8, 2016
1 parent b367fd7 commit 667e5d3
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 21 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@

2.0.7 / 2016-03-08
==================

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

* Conditional Transformations
* Set breakpoint steps to 100. Default `responsive_use_stoppoints` to `true` instead of `"resize"`.
* Round up DPR by default. Add `round_dpr` configuration parameter.

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

* Add `Condition` class. Add `Transformation.if`, `Transformation.endif`, `Transformation.else`.
* Use String.slice() instead of String.substring()
* Update Grunt `build` task to not delete the lodash artifacts. Update `compile` task to not clean `jsdoc`.
* Add `bootstrap` argument to `responsive()`. Support responsive_class in options (defaults to `cld-responsive`).
* Add `Util.removeAttribute`
* Add `item == null` to jQuery utils `isEmpty`

2.0.6 / 2016-02-15
==================

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

* Support webpack, browserify
* webpack example
* Minified version of source
* Shrinkwrapped core lib which includes a subset of the lodash functions

## Other Changes
Other Changes
-------------

* Remove UMD constrcut from the individual source files.
* Fix module references for NodeJS
* Clone headers instead of modifying them. Fixes handling of multiple chunked uploads in parallel.
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.0.6",
"version": "2.0.7",
"title": "Cloudinary jQuery Plugin",
"authors": [
{
Expand Down
26 changes: 10 additions & 16 deletions js/jquery.cloudinary.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.0.6",
"version": "2.0.7",
"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.0.6"
VERSION = "2.0.7"
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 667e5d3

Please sign in to comment.