File tree 3 files changed +11
-4
lines changed 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 3.2.3] - 2023-12-06
12
+
13
+ ### Changed
14
+
15
+ - bumped testing dependency version
16
+
11
17
## [ 3.2.2] - 2023-11-14
12
18
13
19
### Changed
@@ -246,7 +252,8 @@ Many equivalents to Kotlin standard library were added 🎉
246
252
- ` iter.pair() ` for zipping two iterables.
247
253
- ` iter.concat ` (like ` Array.prototype.concat ` )
248
254
249
- [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.2.2...HEAD
255
+ [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.2.3...HEAD
256
+ [ 3.2.3 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.3
250
257
[ 3.2.2 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.2
251
258
[ 3.2.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.1
252
259
[ 3.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.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.2.1 /mod.ts" ;
26
+ import * as iter from " https://deno.land/x/iter@$MODULE_VERSION /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.2.1 /fp.ts" ;
63
+ import * as iter from " https://deno.land/x/iter@$MODULE_VERSION /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.2.1 " ;
2
+ export const VERSION = "3.2.3 " ;
3
3
/** License of the module */
4
4
export const LICENSE = "MIT" ;
You can’t perform that action at this time.
0 commit comments