Skip to content

Commit

Permalink
Version bump to 0.53.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Apr 6, 2017
1 parent e612eab commit 1182f86
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 22 deletions.
24 changes: 8 additions & 16 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.53.0/lamb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.53.1/lamb.min.js"></script>
```

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

```html
<script src="https://unpkg.com/lamb@0.53.0/dist/lamb.min.js"></script>
<script src="https://unpkg.com/lamb@0.53.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.53.1 - *2017/04/06***
- **Fixed**: `hasKeyValue` was returning `true` for any existent property when searching for an `undefined` value
- Updated object checking tests
- Updated dev dependencies

- **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
Expand Down Expand Up @@ -143,16 +148,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- Added `divideBy` as a right curried version of `divide`
- Added optimized currying for functions with arity 2 and 3
- Performance improvement for `compose` and `pipe`

- **v0.49.0 - *2017/01/24***
- **API change**: removed optional context parameter in every function that was using it
- **API change**: `aritize` now will simply convert its `arity` parameter to integer, instead of giving it a special meaning when is `undefined`
- **Fixed**: `skip` and `skipKeys` now convert to string every value in the `blacklist`
- **Fixed**: `hasKeyValue` now correctly returns `false` when searching for an `undefined` value in a non-existent property
- **Fixed**: `pathExists`, `pathExistsIn` and `hasPathValue` will no longer see valid paths when a negative array index is out of bounds
- Minor performance improvements for `pick`, `pickIf`, `skip` and `skipIf`
- Added tests with sparse arrays where needed and updated existing ones with misleading texts / specs
- Tidied up test code a bit by grouping some common variables
- Updated tests for `hasPathValue` and "pick" and "skip" functions
- Updated tests of `updatePath` to check negative array indexes that are out of bounds
- Updated dev dependencies
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.53.1-alpha.3
* @version 0.53.1
* @module lamb
* @license MIT
* @preserve
Expand Down Expand Up @@ -44,7 +44,7 @@
* @readonly
* @type String
*/
"@@lamb/version": {value: "0.53.1-alpha.3"}
"@@lamb/version": {value: "0.53.1"}
});

// prototype shortcuts
Expand Down
Loading

0 comments on commit 1182f86

Please sign in to comment.