Skip to content

Commit

Permalink
Version bump to 0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Nov 8, 2016
1 parent b24677c commit b6fa00a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ Lamb it's also delivered on a CDN, courtesy of [jsDelivr](https://www.jsdelivr.c
The URLs above will retrieve the latest version, but you can target a specific one:

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

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

Please note that Lamb is served by jsDelivr since version 0.42.0.
Expand Down Expand Up @@ -105,6 +105,14 @@ 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.44.0 - *2016/11/08***
- **API change**: `repeat` and `testWith` now throw an exception when the source string is `nil` and convert to string every other value
- **API change**: `repeat` now floors the value received as the `times` parameter instead of ceiling it
- **API change**: the `char` parameter of the padding functions isn't optional anymore and will be coerced to string
- **Fixed**: predicates built with `testWith` are now safe to reuse even when the global flag is used in the pattern
- Added `append` and `appendTo`
- Updated tests of all string functions

- **v0.43.0 - *2016/11/03***
- **Fully compatible with versions down to 0.40.x**
- Added `pathExists` and `pathExistsIn`
Expand All @@ -131,11 +139,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
- Updated tests of array accessors
- Updated tests of object and path accessors
- Improved performance of `hasKeyValue`

- **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`
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.44.0-alpha.7
* @version 0.44.0
* @module lamb
* @license MIT
* @preserve
Expand All @@ -18,7 +18,7 @@
* @category Core
* @type String
*/
lamb._version = "0.44.0-alpha.7";
lamb._version = "0.44.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 @@ -34,7 +34,7 @@
"coveralls": "gulp coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"tonicExample": "var _ = require('lamb');",
"version": "0.44.0-alpha.7",
"version": "0.44.0",
"devDependencies": {
"coveralls": "^2.11.14",
"gulp": "^3.9.1",
Expand Down

0 comments on commit b6fa00a

Please sign in to comment.