Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jajaperson committed Aug 12, 2022
1 parent 85a7ede commit 2eb6709
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [2.5.0] - 2020-08-12

### Added

- `iter.create.fromChars()` and `iter.create.fromCharCodes()` for iterating over UTF-16 character units and codes respectively.
Expand Down Expand Up @@ -166,7 +168,7 @@ and this project adheres to
- `iter.concat` (like `Array.prototype.concat`)

[unreleased]:
https://github.com/jajaperson/iterable-utilities/compare/v2.4.2...HEAD
https://github.com/jajaperson/iterable-utilities/compare/v2.5.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
Expand All @@ -179,3 +181,4 @@ and this project adheres to
[2.4.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.0
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.2/mod.ts";
import * as iter from "https://deno.land/x/iter@v2.5.0/mod.ts";

const naturals = iter.create.increments(1);
const odds = iter.filter(naturals, (n) => n % 2 === 1);
Expand All @@ -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.4.2/fp.ts";
import * as iter from "https://deno.land/x/iter@v2.5.0/fp.ts";

const naturals = iter.create.increments(1);
const filterOdds = iter.filter<number>((n) => n % 2 === 1);
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Version of the module */
export const VERSION = "2.4.2";
export const VERSION = "2.5.0";
/** License of the module */
export const LICENSE = "MIT";

0 comments on commit 2eb6709

Please sign in to comment.