Skip to content

Commit

Permalink
Version bump to 0.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Mar 21, 2018
1 parent 845e78c commit da80ffb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 21 deletions.
23 changes: 9 additions & 14 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.1/lamb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.55.0/lamb.min.js"></script>
```

```html
<script src="https://cdn.jsdelivr.net/npm/lamb@0.54.1/dist/lamb.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lamb@0.55.0/dist/lamb.min.js"></script>
```

```html
<script src="https://unpkg.com/lamb@0.54.1/dist/lamb.min.js"></script>
<script src="https://unpkg.com/lamb@0.55.0/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,12 @@ 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.55.0 - *2018/03/21***
- **Fully compatible with versions down to 0.53.x**
- Added `rotate` and `rotateBy`
- Updated link to jsDelivr
- Fixed and updated doc comments and tests

- **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
Expand All @@ -124,14 +130,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- **API change**: `difference` is now a binary function and returns a result without duplicates
- Changed the name of the property holding the library's version
- Added the possibility to use custom placeholders in partial application

- **v0.52.0 - *2017/03/17***
- **API change**: `partial` is no longer variadic and accepts a function and an array of arguments instead
- **API change**: `getArgAt` and all array accessors now convert their index parameter to integer
- **API change**: reverted change made in v0.50.0 about `compose` and `pipe`: now they return again the `identity` function if called without arguments
- **API change**: `merge` and `mergeOwn` now throw for `nil` values and convert to object everything else as before
- **API change**: `intersection` now return an empty array if called without parameters
- **Fixed**: `transpose` and `zip` now correctly throw when `nil` values, preceded by empty array-likes, are encountered
- 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
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.2
* @version 0.55.0
* @module lamb
* @license MIT
* @preserve
Expand Down Expand Up @@ -44,7 +44,7 @@
* @since 0.53.0
* @type String
*/
"@@lamb/version": {value: "0.55.0-alpha.2"}
"@@lamb/version": {value: "0.55.0"}
});

// prototype shortcuts
Expand Down
Loading

0 comments on commit da80ffb

Please sign in to comment.