Skip to content

Commit 5ac639a

Browse files
committed
Version bump to 0.59.1
1 parent 9a9792a commit 5ac639a

10 files changed

Lines changed: 154 additions & 217 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
- **v0.59.1 - *2020/07/17***
2+
- **Fully compatible with version 0.59.0**
3+
- Updated "exports" property in `package.json` to address the issue where some tools couldn't access the manifest file. See https://github.com/nodejs/node/issues/33460.
4+
- Got rid of ES5 in all examples
5+
16
- **v0.59.0 - *2020/07/07***
27
- Sorry for all the renaming, but I'm in the process of freezing the API and wanted to tackle some inconsistencies in naming choices.
38
- Updated to support Node.js ES modules (and renamed ES modules build to `lamb.mjs`)
49
- Added `split` and `splitBy`
510
- **API change**: renamed `pick` to `pickIn` and `pickKeys` to `pick`
11+
- **API change**: renamed `skip` to `skipIn` and `skipKeys` to `skip`
612
- **API change**: renamed `rename` to `renameIn` and `renameKeys` to `rename`
713
- **API change**: renamed `pluck` to `pluckFrom` and `pluckKey` to `pluck`
814
- **API change**: renamed `case` to `casus` to avoid confusion and clashing with the switch statement's case

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ Since version 0.58.0 there is also a one file ES modules build, always in the `d
5656
Lamb it's also delivered on a CDN, courtesy of [cdnjs](https://cdnjs.com/), [jsDelivr](https://www.jsdelivr.com/) and [unpkg](https://unpkg.com/):
5757

5858
```html
59-
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.59.0/lamb.min.js"></script>
59+
<script src="https://cdnjs.cloudflare.com/ajax/libs/lamb/0.59.1/lamb.min.js"></script>
6060
```
6161

6262
```html
63-
<script src="https://cdn.jsdelivr.net/npm/lamb@0.59.0/dist/lamb.min.js"></script>
63+
<script src="https://cdn.jsdelivr.net/npm/lamb@0.59.1/dist/lamb.min.js"></script>
6464
```
6565

6666
```html
67-
<script src="https://unpkg.com/lamb@0.59.0/dist/lamb.min.js"></script>
67+
<script src="https://unpkg.com/lamb@0.59.1/dist/lamb.min.js"></script>
6868
```
6969

7070
Please note that Lamb is served by jsDelivr since version 0.42.0.
@@ -115,11 +115,17 @@ You can check the [recent](#recent_changes) or the [full](https://ascartabelli.g
115115
## <a name="recent_changes"></a> Recent changes
116116
You can also check the [full changelog](https://ascartabelli.github.io/lamb/changelog.html).
117117

118+
- **v0.59.1 - *2020/07/17***
119+
- **Fully compatible with version 0.59.0**
120+
- Updated "exports" property in `package.json` to address the issue where some tools couldn't access the manifest file. See https://github.com/nodejs/node/issues/33460.
121+
- Got rid of ES5 in all examples
122+
118123
- **v0.59.0 - *2020/07/07***
119124
- Sorry for all the renaming, but I'm in the process of freezing the API and wanted to tackle some inconsistencies in naming choices.
120125
- Updated to support Node.js ES modules (and renamed ES modules build to `lamb.mjs`)
121126
- Added `split` and `splitBy`
122127
- **API change**: renamed `pick` to `pickIn` and `pickKeys` to `pick`
128+
- **API change**: renamed `skip` to `skipIn` and `skipKeys` to `skip`
123129
- **API change**: renamed `rename` to `renameIn` and `renameKeys` to `rename`
124130
- **API change**: renamed `pluck` to `pluckFrom` and `pluckKey` to `pluck`
125131
- **API change**: renamed `case` to `casus` to avoid confusion and clashing with the switch statement's case
@@ -146,9 +152,3 @@ You can also check the [full changelog](https://ascartabelli.github.io/lamb/chan
146152
- **API change**: `compose`, `intersection`, `merge`, `mergeOwn`, `union` and `zip` are now binary functions, and so are functions built with `unionBy`.
147153
- **API change**: `adapter`, `allOf`, `anyOf`, `collect` and `pipe` now accept an array of functions
148154
- Updated doc comments and tests
149-
150-
- **v0.55.0 - *2018/03/21***
151-
- **Fully compatible with versions down to 0.53.x**
152-
- Added `rotate` and `rotateBy`
153-
- Updated link to jsDelivr
154-
- Fixed and updated doc comments and tests

dist/lamb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
33
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
4-
* @version 0.59.1-alpha.1
4+
* @version 0.59.1
55
* @module lamb
66
* @license MIT
77
*/

dist/lamb.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lamb.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lamb.min.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
33
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
4-
* @version 0.59.1-alpha.1
4+
* @version 0.59.1
55
* @module lamb
66
* @license MIT
77
*/

dist/lamb.min.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lamb.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
33
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
4-
* @version 0.59.1-alpha.1
4+
* @version 0.59.1
55
* @module lamb
66
* @license MIT
77
*/

0 commit comments

Comments
 (0)