Skip to content

Commit

Permalink
Version bump to 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Aug 26, 2016
1 parent 683e83a commit a4084f9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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 one:

```html
<script src="https://npmcdn.com/lamb@0.38.0/dist/lamb.min.js"></script>
<script src="https://npmcdn.com/lamb@0.39.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 @@ -94,6 +94,14 @@ You can check the [recent](#recent_changes) or the [full](https://ascartabelli.g

## <a name="recent_changes"></a> Recent changes

- **v0.39.0 - *2016/08/26***
- **Fully compatible with versions down to 0.37.x**
- Added `every`, `everyIn`, `some`, `someIn`
- Updated tests for functions using predicates
- Made `intersection` use `everyIn` instead of the native method
- Updated doc comments, examples and tests for `uniques`
- Minor performance improvement of `uniques`

- **v0.38.0 - *2016/08/19***
- **Fully compatible with versions down to 0.37.x**
- Improved performance of `flatMap`, `flatMapWith`, `flatten` and `shallowFlatten`
Expand All @@ -115,7 +123,3 @@ You can check the [recent](#recent_changes) or the [full](https://ascartabelli.g
- **Fully compatible with versions down to 0.34.x**
- Added `collect`, `pickKeys` and `skipKeys`
- Updated the examples of `anyOf` and `clamp`

- **v0.34.0 - *2016/07/19***
- **API change**: `filter`, `forEach`, `map`, `reduce` and `reduceRight` aren’t array generics anymore and have been replaced with performant custom implementations as JS engines didn’t get any better. Unlike native methods, these custom implementations won’t skip unassigned or deleted indexes in arrays.
- Overall performance improvements (other than the ones caused by the aforementioned custom implementations) and some code clean-up
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.39.0-alpha.4
* @version 0.39.0
* @module lamb
* @license MIT
* @preserve
Expand All @@ -18,7 +18,7 @@
* @category Core
* @type String
*/
lamb._version = "0.39.0-alpha.4";
lamb._version = "0.39.0";

// alias used as a placeholder argument for partial application
var _ = lamb;
Expand Down
4 changes: 2 additions & 2 deletions dist/lamb.min.js

Large diffs are not rendered by default.

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 @@ -31,7 +31,7 @@
"coveralls": "gulp coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"tonicExample": "var _ = require('lamb');",
"version": "0.39.0-alpha.4",
"version": "0.39.0",
"devDependencies": {
"coveralls": "^2.11.12",
"gulp": "^3.9.1",
Expand Down

0 comments on commit a4084f9

Please sign in to comment.