Skip to content

Commit

Permalink
version bump to 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Apr 27, 2016
1 parent d723cfc commit 4d918ba
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
7 changes: 6 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.22.0/dist/lamb.min.js"></script>
<script src="https://npmcdn.com/lamb@0.23.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,11 @@ You can refer to the [changelog](#changelog) to see if your code is affected.

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

- **v0.23.0 - *2016/04/27***
- **API change**: `getPath` and `getPathIn` now support negative indexes
- **API change**: The function returned by `getAt` now throw exceptions only if called with `null` or `undefined` and returns `undefined` for any other non-array-like object
- Added `getIndex`, `setIndex` and `updateIndex`

- **v0.22.0 - *2016/04/19***
- **Fully compatible with versions down to 0.21.x**
- Added `updateIn`, `updateKey` and `updateAt`
Expand Down
4 changes: 2 additions & 2 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.23.0-rc.2
* @version 0.23.0
* @module lamb
* @license MIT
* @preserve
Expand All @@ -18,7 +18,7 @@
* @category Core
* @type String
*/
lamb._version = "0.23.0-rc.2";
lamb._version = "0.23.0";

// alias used as a placeholder argument for partial application
var _ = lamb;
Expand Down

0 comments on commit 4d918ba

Please sign in to comment.