Skip to content

Commit

Permalink
release: 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarljubenovic committed Nov 3, 2023
1 parent ff0b5ef commit 69803a4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 0.0.2 (2023-11-03)

## Improvements

### Operators

#### `chunk`

- When the `chunkSize` value is known at compile-time, the return type of the operator will now reflect that and return a suitable union of tuples instead of an array with a generic length.

For example, `chunk(3)` will now return `Operator<T, [T] | [T, T] | [T, T, T]>` instead of `Operator<T, Array<T>>`.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupiterate",
"version": "0.0.1",
"version": "0.0.2",
"description": "A tree-shakable iteration library.",
"main": "dst/cjs/index.js",
"module": "dst/esm/index.js",
Expand Down

0 comments on commit 69803a4

Please sign in to comment.