Skip to content

Commit

Permalink
Bump version to 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstraw committed Jul 21, 2016
1 parent 8070661 commit e5b72fc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# imgix.js 3.0.2

* Fixes an issue in browsers without the `window.devicePixelRatio` property.


# imgix.js 3.0.1

* Adds the `ixlib` diagnostic parameter, and associated `imgix.config.includeLibraryParam` option.
Expand Down
2 changes: 1 addition & 1 deletion dist/imgix.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ var ImgixTag = require('./ImgixTag.js'),
util = require('./util.js'),
defaultConfig = require('./defaultConfig');

var VERSION = '3.0.1';
var VERSION = '3.0.2';

var ELEMENT_QUERY = [
'img[ix-src]',
Expand Down
2 changes: 1 addition & 1 deletion dist/imgix.min.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": "imgix.js",
"version": "3.0.1",
"version": "3.0.2",
"description": "imgix.js is a dependency-free JavaScript library that allows you to easily use the imgix API to make images on your site or app responsive to device size and pixel density. imgix.js allows for intuitive use of imgix features such as text formatting, color palette extraction, color adjustments, effects, and watermarking. imgix.js requires an imgix account to use your own images. Sign up at imgix.com",
"main": "dist/imgix.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/imgix.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var ImgixTag = require('./ImgixTag.js'),
util = require('./util.js'),
defaultConfig = require('./defaultConfig');

var VERSION = '3.0.1';
var VERSION = '3.0.2';

var ELEMENT_QUERY = [
'img[ix-src]',
Expand Down

0 comments on commit e5b72fc

Please sign in to comment.