Skip to content

Commit

Permalink
Version bump to 0.57.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Feb 12, 2019
1 parent 3034404 commit d36e459
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
after_script:
- npm run coveralls
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,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.56.0/lamb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.57.0/lamb.min.js"></script>
```

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

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

Please note that Lamb is served by jsDelivr since version 0.42.0.
Expand Down Expand Up @@ -113,6 +113,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.57.0 - *2019/02/12***
- Splitted the library into ES modules
- **API change**: `sort`, `sortWith` and `sortedInsert` now accept an array of sorters
- **API change**: removed `@@lamb/placeholder` property as now the placeholder is exported as `__`
- Switched to Jest as a test suite

- **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
Expand All @@ -133,7 +139,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- Added `mapValues` and `mapValuesWith`
- Added "@since" tags to doc comments
- Added linting for tests

- **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
2 changes: 1 addition & 1 deletion 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.57.0-rc.2
* @version 0.57.0
* @module lamb
* @license MIT
* @preserve
Expand Down
2 changes: 1 addition & 1 deletion dist/lamb.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 @@ -45,7 +45,7 @@
"unpkg": "dist/lamb.min.js",
"sideEffects": false,
"tonicExample": "var _ = require('lamb');",
"version": "0.57.0-rc.2",
"version": "0.57.0",
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"coveralls": "^3.0.2",
Expand Down

0 comments on commit d36e459

Please sign in to comment.