Skip to content
This repository has been archived by the owner on Jan 22, 2023. It is now read-only.

Commit

Permalink
release(0.21.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Zukowski committed Jun 2, 2017
1 parent 481d56d commit 4a17c1b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,36 @@
## v0.21.0

### Deprecations
* Removed `gt`, use `>` inline instead.
* Removed `gte`, use `>=` inline instead.
* Removed `lt`, use `<` inline instead.
* Removed `lte`, use `<=` inline instead.
* Removed `flip`, use arrow functions instead.
* Removed `fmap`.
* Removed `of`.

### Features
* Added `difference`.
* Added `interpose`.
* Added `invert`.

### Fixes
* `compose` now has a correct `toString` representation.
* `pipe` now has a correct `toString` representation.

### Improvements
* Miscellaneous TypesScript definition improvements.
* `get` no longer throws when the target is nil, now returns undefined.
* `getIn` no longer throws when the target is nil, now returns undefined.
* `rangeBy` now returns an empty array when start === end.
* `compose` no longer performs runtime type checking.
* `pipe` no longer performs runtime type checking.
* Eliminated extra toString calls in `equals`.

## v0.20.1

### Improvements
* Improved TypeScript definitions
* Improved TypeScript definitions.

## v0.20.0

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": "redash",
"version": "0.20.1",
"version": "0.21.0",
"description": "A better Standard Library for JavaScript",
"main": "redash.js",
"module": "redash.next.js",
Expand Down

0 comments on commit 4a17c1b

Please sign in to comment.