Commit e110cf8
committed
chore(release): 2.0.0 [skip ci]
# [2.0.0](v1.13.0...v2.0.0) (2021-10-12)
### Bug Fixes
* the function returned by unary does not need to be curried ([cf51ece](cf51ece))
### chore
* remove type checking. close [#17](#17) ([a03793f](a03793f))
### Features
* all checks the element of a list against a predicate. close [#24](#24) ([8f9bc01](8f9bc01))
### BREAKING CHANGES
* The function has been changed to accept only one predicate and a list
of values instead of any number of parameters.
Migration:
v1: `all(isNum, isOdd)(1, 2, 3)`
v2: `all(x => isNum(x) === true && isOdd(x) === true, [1, 2, 3])`
* Type checking parameters is gone.
See corresponding Architecture Decision Record (ADR).1 parent cd012ac commit e110cf8
2 files changed
Lines changed: 32 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
1 | 32 | | |
2 | 33 | | |
3 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments