Skip to content

Commit

Permalink
Version bump to 0.56.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Jul 15, 2018
1 parent 9a00dbe commit 8cb4cd2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 17 deletions.
18 changes: 8 additions & 10 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.55.0/lamb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.56.0/lamb.min.js"></script>
```

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

```html
<script src="https://unpkg.com/lamb@0.55.0/dist/lamb.min.js"></script>
<script src="https://unpkg.com/lamb@0.56.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,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.56.0 - *2018/07/15***
- **API change**: `compose`, `intersection`, `merge`, `mergeOwn`, `union` and `zip` are now binary functions, and so are functions built with `unionBy`.
- **API change**: `adapter`, `allOf`, `anyOf`, `collect` and `pipe` now accept an array of functions
- Updated doc comments and tests

- **v0.55.0 - *2018/03/21***
- **Fully compatible with versions down to 0.53.x**
- Added `rotate` and `rotateBy`
Expand All @@ -123,10 +128,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- **v0.53.1 - *2017/04/06***
- **Fixed**: `hasKeyValue` was returning `true` for any existent property when searching for an `undefined` value
- Updated object checking tests

- **v0.53.0 - *2017/03/30***
- **API change**: unfilled placeholders in functions built with `asPartial` now assume an `undefined` value
- **API change**: `range` now converts to number its parameters and will return an empty array if the specified range is invalid
- **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
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.56.0-alpha.12
* @version 0.56.0
* @module lamb
* @license MIT
* @preserve
Expand Down Expand Up @@ -44,7 +44,7 @@
* @since 0.53.0
* @type String
*/
"@@lamb/version": {value: "0.56.0-alpha.12"}
"@@lamb/version": {value: "0.56.0"}
});

// prototype shortcuts
Expand Down
Loading

0 comments on commit 8cb4cd2

Please sign in to comment.