File tree 3 files changed +8
-5
lines changed 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,13 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 2.6.0] - 2020-08-24
12
+
11
13
### Added
12
14
13
15
- ` iter.peekable() ` inspired by Rust's [ ` std::iter::Peekable ` ] ( https://doc.rust-lang.org/std/iter/struct.Peekable.html ) .
14
16
15
- ## Changed
17
+ ### Changed
16
18
17
19
- (docs) Added special note on the inclusivity of ` create.range() ` .
18
20
@@ -176,7 +178,7 @@ and this project adheres to
176
178
- ` iter.concat ` (like ` Array.prototype.concat ` )
177
179
178
180
[ unreleased] :
179
- https://github.com/jajaperson/iterable-utilities/compare/v2.5 .0...HEAD
181
+ https://github.com/jajaperson/iterable-utilities/compare/v2.6 .0...HEAD
180
182
[ 0.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.2.0
181
183
[ 0.1.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.1
182
184
[ 0.1.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.0
@@ -190,3 +192,4 @@ and this project adheres to
190
192
[ 2.4.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.1
191
193
[ 2.4.2 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.2
192
194
[ 2.5.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.5.0
195
+ [ 2.6.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ The module is currently hosted on [deno.land/x/](https://deno.land/x/).
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@v2.5 .0/mod.ts" ;
26
+ import * as iter from " https://deno.land/x/iter@v2.6 .0/mod.ts" ;
27
27
28
28
const naturals = iter .create .increments (1 );
29
29
const odds = iter .filter (naturals , (n ) => n % 2 === 1 );
@@ -49,7 +49,7 @@ sensible level of currying.
49
49
``` ts
50
50
import * as iter from " https://deno.land/x/iter/fp.ts" ;
51
51
// or with a version
52
- import * as iter from " https://deno.land/x/iter@v2.5 .0/fp.ts" ;
52
+ import * as iter from " https://deno.land/x/iter@v2.6 .0/fp.ts" ;
53
53
54
54
const naturals = iter .create .increments (1 );
55
55
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 = "2.5 .0" ;
2
+ export const VERSION = "2.6 .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