Skip to content

Commit

Permalink
Version bump to 0.54.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Mar 9, 2018
1 parent 2226531 commit df31d51
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 20 deletions.
21 changes: 8 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ The source map for the minified file is in the same `dist` folder.
Lamb it's also delivered on a CDN, courtesy of [cdnjs](https://cdnjs.com/), [jsDelivr](https://www.jsdelivr.com/) and [unpkg](https://unpkg.com/):

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.54.0/lamb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.54.1/lamb.min.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/lamb/0.54.0/lamb.min.js"></script>
<script src="https://cdn.jsdelivr.net/lamb/0.54.1/lamb.min.js"></script>
```

```html
<script src="https://unpkg.com/lamb@0.54.0/dist/lamb.min.js"></script>
<script src="https://unpkg.com/lamb@0.54.1/dist/lamb.min.js"></script>
```

Please note that Lamb is served by jsDelivr since version 0.42.0.
Expand Down Expand Up @@ -104,6 +104,11 @@ You can check the [recent](#recent_changes) or the [full](https://ascartabelli.g
## <a name="recent_changes"></a> Recent changes
You can also check the [full changelog](https://ascartabelli.github.io/lamb/changelog.html).

- **v0.54.1 - *2018/03/09***
- **Fixed**: `setPath` and `updatePath` weren't returning unary functions, and further arguments would have overwritten the previous ones
- Updated doc comments
- Updated linting rules

- **v0.54.0 - *2017/08/01***
- Added `mapValues` and `mapValuesWith`
- Added "@since" tags to doc comments
Expand All @@ -130,13 +135,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- Added `partialRight`
- `difference` and `intersection` are now correctly documented to work with array-like objects
- Updated test and moved shared variables to an external file

- **v0.51.0 - *2017/02/20***
- **API change**: removed the `iteratee` parameter from `uniques`
- **API change**: removed `fromIndex` parameter from `contains` and `isIn`
- **API change**: `tapArgs` isn't variadic anymore and accepts an array of "tappers" as the second parameter
- **API change**: renamed `drop` and `take` to `dropFrom` and `takeFrom`
- **API change**: renamed `dropN` and `takeN` to `drop` and `take`
- **API change**: the `falseFn` parameter of `condition` is no longer optional
- Added `case` to quickly build cases for `adapter`
- Added `unionBy` and `uniquesBy`
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.55.0-alpha.4
* @version 0.54.1
* @module lamb
* @license MIT
* @preserve
Expand Down Expand Up @@ -46,7 +46,7 @@
* @since 0.53.0
* @type String
*/
"@@lamb/version": {value: "0.55.0-alpha.4"}
"@@lamb/version": {value: "0.54.1"}
});

// prototype shortcuts
Expand Down

0 comments on commit df31d51

Please sign in to comment.