Skip to content

Commit

Permalink
Bump to 1.0.7 and check in dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Eberle committed Jul 17, 2017
1 parent 3b018de commit 4feb193
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix-core-js",
"version": "1.0.6",
"version": "1.0.7",
"homepage": "https://github.com/imgix/imgix-core-js",
"authors": [
"Kelly Sutton <michael.k.sutton@gmail.com>",
Expand Down
10 changes: 5 additions & 5 deletions dist/imgix-core-js.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
(function (global, factory) {
if (typeof define === 'function' && define.amd) {
define('Imgix', ['exports', 'js-md5', 'js-base64'], factory);
define('Imgix', ['exports', 'md5', 'js-base64'], factory);
} else if (typeof exports !== 'undefined') {
module.exports = factory(exports, require('js-md5'), require('js-base64').Base64);
module.exports = factory(exports, require('md5'), require('js-base64').Base64);
} else {
var mod = {
exports: {}
};
global.ImgixClient = factory(mod.exports, global.md5, global.Base64);
}
})(this, function (exports, _jsMd5, _jsBase64) {
var md5 = _jsMd5;
})(this, function (exports, _md5, _jsBase64) {
var md5 = _md5;
var Base64 = _jsBase64;

var VERSION = '1.0.6';
var VERSION = '1.0.7';
var DEFAULTS = {
host: null,
useHTTPS: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/imgix-core-js.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,7 +1,7 @@
{
"name": "imgix-core-js",
"description": "Common boilerplate for all imgix JavaScript-based functionality.",
"version": "1.0.6",
"version": "1.0.7",
"repository": "https://github.com/imgix/imgix-core-js",
"scripts": {
"assert_version": "node assert_version.js",
Expand Down
2 changes: 1 addition & 1 deletion src/imgix-core-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
var md5 = _md5;
var Base64 = _jsBase64;

var VERSION = '1.0.6';
var VERSION = '1.0.7';
var DEFAULTS = {
host: null,
useHTTPS: true,
Expand Down

0 comments on commit 4feb193

Please sign in to comment.