Skip to content

Commit

Permalink
chore(release): 2.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [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).
  • Loading branch information
semantic-release-bot committed Oct 12, 2021
1 parent cd012ac commit e110cf8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# [2.0.0](https://github.com/customcommander/functionaut/compare/v1.13.0...v2.0.0) (2021-10-12)


### Bug Fixes

* the function returned by unary does not need to be curried ([cf51ece](https://github.com/customcommander/functionaut/commit/cf51ece80577967154e90f1b05012e9214b074cd))


### chore

* remove type checking. close [#17](https://github.com/customcommander/functionaut/issues/17) ([a03793f](https://github.com/customcommander/functionaut/commit/a03793fe2474a2f5bd0b8421f95730567ed5271f))


### Features

* all checks the element of a list against a predicate. close [#24](https://github.com/customcommander/functionaut/issues/24) ([8f9bc01](https://github.com/customcommander/functionaut/commit/8f9bc01382a83c7f89d4aca7caae2711f9e171b3))


### 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.13.0](https://github.com/customcommander/functionaut/compare/v1.12.0...v1.13.0) (2021-10-11)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@customcommander/functionaut",
"version": "1.13.0",
"version": "2.0.0",
"author": "customcommander <[email protected]>",
"repository": "https://github.com/customcommander/functionaut.git",
"description": "A functional journey.",
Expand Down

0 comments on commit e110cf8

Please sign in to comment.