Skip to content

Commit 416d396

Browse files
committed
v3.2.3
1 parent 4e2a30d commit 416d396

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [3.2.3] - 2023-12-06
12+
13+
### Changed
14+
15+
- bumped testing dependency version
16+
1117
## [3.2.2] - 2023-11-14
1218

1319
### Changed
@@ -246,7 +252,8 @@ Many equivalents to Kotlin standard library were added 🎉
246252
- `iter.pair()` for zipping two iterables.
247253
- `iter.concat` (like `Array.prototype.concat`)
248254

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
250257
[3.2.2]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.2
251258
[3.2.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.1
252259
[3.2.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.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 <https://deno.land/x/iter>.
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@v3.2.1/mod.ts";
26+
import * as iter from "https://deno.land/x/iter@$MODULE_VERSION/mod.ts";
2727

2828
const naturals = iter.create.increments(1);
2929
const odds = iter.filter(naturals, (n) => n % 2 === 1);
@@ -60,7 +60,7 @@ sensible level of currying. In Deno:
6060
```ts
6161
import * as iter from "https://deno.land/x/iter/fp.ts";
6262
// 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";
6464

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

0 commit comments

Comments
 (0)