10000 Bump to v0.6.0. · lodash/lodash@11cd990 · GitHub
[go: up one dir, main page]

Skip to content

Commit 11cd990

Browse files
committed
Bump to v0.6.0.
Former-commit-id: 7339c27ba63208f23d94ae4a29dec53a43220bad
1 parent cf46254 commit 11cd990

File tree

7 files changed

+155
-172
lines changed

7 files changed

+155
-172
lines changed

README.md

Lines changed: 46 additions & 63 deletions
Large diffs are not rendered by default.

doc/README.md

Lines changed: 100 additions & 100 deletions
Large diffs are not rendered by default.

doc/parse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// generate Markdown
2222
$markdown = docdown(array(
2323
'path' => '../' . $file,
24-
'title' => 'Lo-Dash <sup>v0.5.2</sup>',
24+
'title' => 'Lo-Dash <sup>v0.6.0</sup>',
2525
'url' => 'https://github.com/bestiejs/lodash/blob/master/lodash.js'
2626
));
2727

lodash.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Lo-Dash v0.5.2 <http://lodash.com>
2+
* Lo-Dash v0.6.0 <http://lodash.com>
33
* Copyright 2012 John-David Dalton <http://allyoucanleet.com/>
44
* Based on Underscore.js 1.3.3, copyright 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
55
* <http://documentcloud.github.com/underscore>
@@ -4162,7 +4162,7 @@
41624162
* @memberOf _
41634163
* @type String
41644164
*/
4165-
lodash.VERSION = '0.5.2';
4165+
lodash.VERSION = '0.6.0';
41664166

41674167
// assign static methods
41684168
lodash.after = after;

lodash.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lodash",
3-
"version": "0.5.2",
3+
"version": "0.6.0",
44
"description": "A drop-in replacement for Underscore.js delivering performance, bug fixes, and additional features.",
55
"homepage": "http://lodash.com",
66
"main": "lodash",

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
QUnit.module('lodash.countBy');
290290

291291
(function() {
292-
test('should only add values to own, not inherited, properties', function() {
292+
test('should only add values to own, not inherited, properties', function() {
293293
var actual = _.countBy([4.2, 6.1, 6.4], function(num) {
294294
return Math.floor(num) > 4 ? 'hasOwnProperty' : 'constructor';
295295
});

0 commit comments

Comments
 (0)
0