From 9730cadffacec98db09cdf40e5a2659a78fd17d1 Mon Sep 17 00:00:00 2001 From: James Jensen Date: Wed, 24 Aug 2022 12:05:02 +0800 Subject: [PATCH] v2.6.0 --- CHANGELOG.md | 7 +++++-- README.md | 4 ++-- version.ts | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 681333e..2a5a203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,13 @@ and this project adheres to ## [Unreleased] +## [2.6.0] - 2020-08-24 + ### Added - `iter.peekable()` inspired by Rust's [`std::iter::Peekable`](https://doc.rust-lang.org/std/iter/struct.Peekable.html). -## Changed +### Changed - (docs) Added special note on the inclusivity of `create.range()`. @@ -176,7 +178,7 @@ and this project adheres to - `iter.concat` (like `Array.prototype.concat`) [unreleased]: - https://github.com/jajaperson/iterable-utilities/compare/v2.5.0...HEAD + https://github.com/jajaperson/iterable-utilities/compare/v2.6.0...HEAD [0.2.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.2.0 [0.1.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.1 [0.1.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.0 @@ -190,3 +192,4 @@ and this project adheres to [2.4.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.1 [2.4.2]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.2 [2.5.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.5.0 +[2.6.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0 diff --git a/README.md b/README.md index 62ba651..6867643 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The module is currently hosted on [deno.land/x/](https://deno.land/x/). ```ts import * as iter from "https://deno.land/x/iter/mod.ts"; // or with a version -import * as iter from "https://deno.land/x/iter@v2.5.0/mod.ts"; +import * as iter from "https://deno.land/x/iter@v2.6.0/mod.ts"; const naturals = iter.create.increments(1); const odds = iter.filter(naturals, (n) => n % 2 === 1); @@ -49,7 +49,7 @@ sensible level of currying. ```ts import * as iter from "https://deno.land/x/iter/fp.ts"; // or with a version -import * as iter from "https://deno.land/x/iter@v2.5.0/fp.ts"; +import * as iter from "https://deno.land/x/iter@v2.6.0/fp.ts"; const naturals = iter.create.increments(1); const filterOdds = iter.filter((n) => n % 2 === 1); diff --git a/version.ts b/version.ts index d4b1d3a..b482728 100644 --- a/version.ts +++ b/version.ts @@ -1,4 +1,4 @@ /** Version of the module */ -export const VERSION = "2.5.0"; +export const VERSION = "2.6.0"; /** License of the module */ export const LICENSE = "MIT";