Bump to v1.0.0-rc.2.

Former-commit-id: 55bca6a70e127152329deeff509a72a73436f40e
This commit is contained in:
John-David Dalton
2012-12-05 01:58:27 -08:00
parent e37e1c109a
commit 54b862bd79
10 changed files with 76 additions and 71 deletions

View File

@@ -1,8 +1,8 @@
/*!
* Lo-Dash 1.0.0-rc.1 (Custom Build) <http://lodash.com>
* Lo-Dash 1.0.0-rc.2 (Custom Build) <http://lodash.com>
* Build: `lodash underscore -d -o ./lodash.underscore.js`
* (c) 2012 John-David Dalton <http://allyoucanleet.com/>
* Based on Underscore.js 1.4.2 <http://underscorejs.org>
* Based on Underscore.js 1.4.3 <http://underscorejs.org>
* (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
* Available under MIT license <http://lodash.com/license>
*/
@@ -3614,10 +3614,10 @@
lodash.bindAll = bindAll;
lodash.chain = chain;
lodash.compact = compact;
lodash.countBy = countBy;
lodash.defaults = defaults;
lodash.difference = difference;
lodash.every = every;
lodash.filter = filter;
lodash.flatten = flatten;
lodash.forEach = forEach;
@@ -3631,7 +3631,6 @@
lodash.map = map;
lodash.max = max;
lodash.min = min;
lodash.mixin = mixin;
lodash.object = object;
lodash.omit = omit;
lodash.pairs = pairs;
@@ -3641,9 +3640,7 @@
lodash.reject = reject;
lodash.rest = rest;
lodash.shuffle = shuffle;
lodash.some = some;
lodash.sortBy = sortBy;
lodash.sortedIndex = sortedIndex;
lodash.tap = tap;
lodash.times = times;
lodash.toArray = toArray;
@@ -3655,8 +3652,6 @@
lodash.zip = zip;
// add aliases
lodash.all = every;
lodash.any = some;
lodash.collect = map;
lodash.drop = rest;
lodash.each = forEach;
@@ -3672,13 +3667,13 @@
lodash.after = after;
lodash.bind = bind;
lodash.clone = clone;
lodash.compact = compact;
lodash.compose = compose;
lodash.contains = contains;
lodash.debounce = debounce;
lodash.defer = defer;
lodash.delay = delay;
lodash.escape = escape;
lodash.every = every;
lodash.find = find;
lodash.has = has;
lodash.identity = identity;
@@ -3700,6 +3695,7 @@
lodash.isUndefined = isUndefined;
lodash.lastIndexOf = lastIndexOf;
lodash.memoize = memoize;
lodash.mixin = mixin;
lodash.noConflict = noConflict;
lodash.once = once;
lodash.random = random;
@@ -3707,6 +3703,8 @@
lodash.reduceRight = reduceRight;
lodash.result = result;
lodash.size = size;
lodash.some = some;
lodash.sortedIndex = sortedIndex;
lodash.template = template;
lodash.throttle = throttle;
lodash.unescape = unescape;
@@ -3714,6 +3712,8 @@
lodash.wrap = wrap;
// add aliases
lodash.all = every;
lodash.any = some;
lodash.detect = find;
lodash.foldl = reduce;
lodash.foldr = reduceRight;
@@ -3739,7 +3739,7 @@
* @memberOf _
* @type String
*/
lodash.VERSION = '1.0.0-rc.1';
lodash.VERSION = '1.0.0-rc.2';
// add functions to `lodash.prototype`
mixin(lodash);