Skip to content

Commit 9730cad

Browse files
committed
v2.6.0
1 parent 35072da commit 9730cad

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [2.6.0] - 2020-08-24
12+
1113
### Added
1214

1315
- `iter.peekable()` inspired by Rust's [`std::iter::Peekable`](https://doc.rust-lang.org/std/iter/struct.Peekable.html).
1416

15-
## Changed
17+
### Changed
1618

1719
- (docs) Added special note on the inclusivity of `create.range()`.
1820

@@ -176,7 +178,7 @@ and this project adheres to
176178
- `iter.concat` (like `Array.prototype.concat`)
177179

178180
[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
180182
[0.2.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.2.0
181183
[0.1.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.1
182184
[0.1.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.0
@@ -190,3 +192,4 @@ and this project adheres to
190192
[2.4.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.1
191193
[2.4.2]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.2
192194
[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

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 [deno.land/x/](https://deno.land/x/).
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@v2.5.0/mod.ts";
26+
import * as iter from "https://deno.land/x/iter@v2.6.0/mod.ts";
2727

2828
const naturals = iter.create.increments(1);
2929
const odds = iter.filter(naturals, (n) => n % 2 === 1);
@@ -49,7 +49,7 @@ sensible level of currying.
4949
```ts
5050
import * as iter from "https://deno.land/x/iter/fp.ts";
5151
// 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";
5353

5454
const naturals = iter.create.increments(1);
5555
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 = "2.5.0";
2+
export const VERSION = "2.6.0";
33
/** License of the module */
44
export const LICENSE = "MIT";

0 commit comments

Comments
 (0)