File tree 3 files changed +13
-5
lines changed 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,16 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 3.1.0] - 2023-06-04
12
+
13
+ ### Added
14
+
15
+ - Added ` iter.flatMap() ` :tada : (like ` Array.prototype.flatMap ` )
16
+
17
+ ### Changed
18
+
11
19
- Flattened ` deno.json `
12
20
- Chunkify actually works as intended
13
- - Added ` flatMap ` :tada :
14
21
15
22
## [ 3.0.0] - 2022-08-28
16
23
@@ -200,7 +207,8 @@ and this project adheres to
200
207
- ` iter.pair() ` for zipping two iterables.
201
208
- ` iter.concat ` (like ` Array.prototype.concat ` )
202
209
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
204
212
[ 3.0.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.0.0
205
213
[ 2.6.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0
206
214
[ 2.5.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.5.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ The module is currently hosted on <https://deno.land/x/iter>.
23
23
``` ts
24
24
import * as iter from " https://deno.land/x/iter/mod.ts" ;
25
25
// 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" ;
27
27
28
28
const naturals = iter .create .increments (1 );
29
29
const odds = iter .filter (naturals , (n ) => n % 2 === 1 );
@@ -60,7 +60,7 @@ sensible level of currying. In Deno:
60
60
``` ts
61
61
import * as iter from " https://deno.land/x/iter/fp.ts" ;
62
62
// 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" ;
64
64
65
65
const naturals = iter .create .increments (1 );
66
66
const filterOdds = iter .filter <number >((n ) => n % 2 === 1 );
Original file line number Diff line number Diff line change 1
1
/** Version of the module */
2
- export const VERSION = "3.0 .0" ;
2
+ export const VERSION = "3.1 .0" ;
3
3
/** License of the module */
4
4
export const LICENSE = "MIT" ;
You can’t perform that action at this time.
0 commit comments