Bump to v1.0.1.

Former-commit-id: b2536f9a226c7418ad3aaa7b5fb88282b77d20e5
This commit is contained in:
John-David Dalton
2013-02-18 00:07:13 -08:00
parent 7093e9c0d4
commit 2459a53350
12 changed files with 64 additions and 72 deletions

View File

@@ -1,6 +1,6 @@
/**
* @license
* Lo-Dash 1.0.0 (Custom Build) <http://lodash.com/>
* Lo-Dash 1.0.1 (Custom Build) <http://lodash.com/>
* Build: `lodash underscore -o ./dist/lodash.underscore.js`
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.4.4 <http://underscorejs.org/>
@@ -3470,7 +3470,7 @@
var args = slice(arguments, 1);
return setTimeout(function() { func.apply(undefined, args); }, 1);
}
// use Node's `setImmediate`, if available
// use `setImmediate` if it's available in Node.js
if (isV8 && freeModule && typeof setImmediate == 'function') {
defer = bind(setImmediate, window);
}
@@ -4248,7 +4248,7 @@
* @memberOf _
* @type String
*/
lodash.VERSION = '1.0.0';
lodash.VERSION = '1.0.1';
// add functions to `lodash.prototype`
mixin(lodash);