Skip to content

Commit 7253136

Browse files
committed
v3.1.0
1 parent f4d6467 commit 7253136

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.1.0] - 2023-06-04
12+
13+
### Added
14+
15+
- Added `iter.flatMap()` :tada: (like `Array.prototype.flatMap`)
16+
17+
### Changed
18+
1119
- Flattened `deno.json`
1220
- Chunkify actually works as intended
13-
- Added `flatMap` :tada:
1421

1522
## [3.0.0] - 2022-08-28
1623

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

203-
[unreleased]: https://github.com/jajaperson/iterable-utilities/compare/v3.0.0...HEAD
210+
[unreleased]: https://github.com/jajaperson/iterable-utilities/compare/v3.1.0...HEAD
211+
[3.1.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.1.0
204212
[3.0.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.0.0
205213
[2.6.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0
206214
[2.5.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.5.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The module is currently hosted on <https://deno.land/x/iter>.
2323
```ts
2424
import * as iter from "https://deno.land/x/iter/mod.ts";
2525
// or with a version
26-
import * as iter from "https://deno.land/x/iter@v3.0.0/mod.ts";
26+
import * as iter from "https://deno.land/x/iter@v3.1.0/mod.ts";
2727

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

6565
const naturals = iter.create.increments(1);
6666
const filterOdds = iter.filter<number>((n) => n % 2 === 1);

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/** Version of the module */
2-
export const VERSION = "3.0.0";
2+
export const VERSION = "3.1.0";
33
/** License of the module */
44
export const LICENSE = "MIT";

0 commit comments

Comments
 (0)