Bump to v0.2.0.

Former-commit-id: 4b5cfd178edce968244a1fcad8c7b74e336e0f08
This commit is contained in:
John-David Dalton
2012-05-21 15:36:10 -04:00
parent eaaef83ace
commit a604494aa9
6 changed files with 21 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
# Lo-Dash <sup>v0.1.0</sup>
# Lo-Dash <sup>v0.2.0</sup>
<!-- div -->
@@ -617,7 +617,7 @@ Checks if the `callback` returns a truthy value for **all** elements of a `colle
#### Example
~~~ js
_.every([true, 1, null, 'yes'], Boolean);
=> false
// => false
~~~
* * *
@@ -795,7 +795,7 @@ _.forEach({ 'one': 1, 'two': 2, 'three': 3}, function(num) { alert(num); });
// => alerts each number in turn
_([1, 2, 3]).forEach(function(num) { alert(num); }).join(',');
// => alerts each number in turn and returns "1,2,3"
// => alerts each number in turn and returns '1,2,3'
~~~
* * *

View File

@@ -21,7 +21,7 @@
// generate Markdown
$markdown = docdown(array(
'path' => '../' . $file,
'title' => 'Lo-Dash <sup>v0.1.0</sup>',
'title' => 'Lo-Dash <sup>v0.2.0</sup>',
'url' => 'https://github.com/bestiejs/lodash/blob/master/lodash.js'
));