Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jajaperson committed Jun 4, 2023
1 parent f4d6467 commit 7253136
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ and this project adheres to

## [Unreleased]

## [3.1.0] - 2023-06-04

### Added

- Added `iter.flatMap()` :tada: (like `Array.prototype.flatMap`)

### Changed

- Flattened `deno.json`
- Chunkify actually works as intended
- Added `flatMap` :tada:

## [3.0.0] - 2022-08-28

Expand Down Expand Up @@ -200,7 +207,8 @@ and this project adheres to
- `iter.pair()` for zipping two iterables.
- `iter.concat` (like `Array.prototype.concat`)

[unreleased]: https://github.com/jajaperson/iterable-utilities/compare/v3.0.0...HEAD
[unreleased]: https://github.com/jajaperson/iterable-utilities/compare/v3.1.0...HEAD
[3.1.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.1.0
[3.0.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.0.0
[2.6.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0
[2.5.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.5.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The module is currently hosted on <https://deno.land/x/iter>.
```ts
import * as iter from "https://deno.land/x/iter/mod.ts";
// or with a version
import * as iter from "https://deno.land/x/iter@v3.0.0/mod.ts";
import * as iter from "https://deno.land/x/iter@v3.1.0/mod.ts";

const naturals = iter.create.increments(1);
const odds = iter.filter(naturals, (n) => n % 2 === 1);
Expand Down Expand Up @@ -60,7 +60,7 @@ sensible level of currying. In Deno:
```ts
import * as iter from "https://deno.land/x/iter/fp.ts";
// or with a version
import * as iter from "https://deno.land/x/iter@v3.0.0/fp.ts";
import * as iter from "https://deno.land/x/iter@v3.1.0/fp.ts";

const naturals = iter.create.increments(1);
const filterOdds = iter.filter<number>((n) => n % 2 === 1);
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Version of the module */
export const VERSION = "3.0.0";
export const VERSION = "3.1.0";
/** License of the module */
export const LICENSE = "MIT";

0 comments on commit 7253136

Please sign in to comment.