Skip to content

Commit 14f2888

Browse files
committed
v2.4.1
1 parent 0e747e2 commit 14f2888

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [2.4.1] - 2020-07-30
12+
13+
### Changed
14+
- Fixed NPM release action.
15+
1116
## [2.4.0] - 2020-07-30
1217

1318
### Added
@@ -149,7 +154,7 @@ and this project adheres to
149154
- `iter.concat` (like `Array.prototype.concat`)
150155

151156
[unreleased]:
152-
https://github.com/jajaperson/iterable-utilities/compare/v2.4.0...HEAD
157+
https://github.com/jajaperson/iterable-utilities/compare/v2.4.1...HEAD
153158
[0.2.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.2.0
154159
[0.1.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.1
155160
[0.1.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.0
@@ -160,3 +165,4 @@ and this project adheres to
160165
[2.2.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.2.1
161166
[2.3.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.3.0
162167
[2.4.0]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.0
168+
[2.4.1]: https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.1

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.4.0/mod.ts";
26+
import * as iter from "https://deno.land/x/iter@v2.4.1/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.4.0/fp.ts";
52+
import * as iter from "https://deno.land/x/iter@v2.4.1/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.4.0";
2+
export const VERSION = "2.4.1";
33
/** License of the module */
44
export const LICENSE = "MIT";

0 commit comments

Comments
 (0)