Skip to content

Commit

Permalink
version bump to 0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed May 23, 2016
1 parent 6cbd891 commit c9b7762
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Lamb it's also delivered on a CDN, courtesy of [npmcdn](https://npmcdn.com/):
The URL above will retrieve the latest version, but you can target a specific version too:

```html
<script src="https://npmcdn.com/lamb@0.26.0/dist/lamb.min.js"></script>
<script src="https://npmcdn.com/lamb@0.27.0/dist/lamb.min.js"></script>
```

You can [try it right now](https://tonicdev.com/npm/lamb) in your browser, too.
Expand Down Expand Up @@ -87,6 +87,10 @@ You can refer to the [changelog](#changelog) to see if your code is affected.

## <a name="changelog"></a> Changelog

- **v0.27.0 - *2016/05/23***
- **API change**: renamed `insert` to `sortedInsert`
- Added `insert`, `insertAt`, `reduceWith` and `reduceRightWith`

- **v0.26.0 - *2016/05/16***
- **Fully compatible with versions down to 0.25.x**
- Added `rename`, `renameKeys` and `renameWith`
Expand Down
6 changes: 3 additions & 3 deletions dist/lamb.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
* @version 0.27.0-alpha.3
* @version 0.27.0
* @module lamb
* @license MIT
* @preserve
Expand All @@ -18,7 +18,7 @@
* @category Core
* @type String
*/
lamb._version = "0.27.0-alpha.3";
lamb._version = "0.27.0";

// alias used as a placeholder argument for partial application
var _ = lamb;
Expand Down Expand Up @@ -3430,7 +3430,7 @@
/**
* Builds a function that allows to map over the received arguments before applying them to the original one.
* @example
* var sumArray = _.invoker("reduce", _.add);
* var sumArray = _.reduceWith(_.add);
* var sum = _.compose(sumArray, _.list);
*
* sum(1, 2, 3, 4, 5) // => 15
Expand Down
4 changes: 2 additions & 2 deletions dist/lamb.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lamb.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"coveralls": "gulp coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"tonicExample": "var _ = require('lamb');",
"version": "0.27.0-alpha.3",
"version": "0.27.0",
"devDependencies": {
"coveralls": "^2.11.9",
"gulp": "^3.9.1",
Expand Down
2 changes: 1 addition & 1 deletion src/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function invokerOn (target) {
/**
* Builds a function that allows to map over the received arguments before applying them to the original one.
* @example
* var sumArray = _.invoker("reduce", _.add);
* var sumArray = _.reduceWith(_.add);
* var sum = _.compose(sumArray, _.list);
*
* sum(1, 2, 3, 4, 5) // => 15
Expand Down

0 comments on commit c9b7762

Please sign in to comment.