File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to
88
99## [ Unreleased]
1010
11+ ## [ 2.4.0] - 2020-07-30
12+
1113### Added
1214
1315- NPM support :tada :
@@ -147,7 +149,7 @@ and this project adheres to
147149 - ` iter.concat ` (like ` Array.prototype.concat ` )
148150
149151[ unreleased] :
150- https://github.com/jajaperson/iterable-utilities/compare/v2.3 .0...HEAD
152+ https://github.com/jajaperson/iterable-utilities/compare/v2.4 .0...HEAD
151153[ 0.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.2.0
152154[ 0.1.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.1
153155[ 0.1.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v0.1.0
@@ -157,3 +159,4 @@ and this project adheres to
157159[ 2.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.2.0
158160[ 2.2.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.2.1
159161[ 2.3.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.3.0
162+ [ 2.4.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.4.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ The module is currently hosted on [deno.land/x/](https://deno.land/x/).
2323``` ts
2424import * 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.3 .0/mod.ts" ;
26+ import * as iter from " https://deno.land/x/iter@v2.4 .0/mod.ts" ;
2727
2828const naturals = iter .create .increments (1 );
2929const odds = iter .filter (naturals , (n ) => n % 2 === 1 );
@@ -49,7 +49,7 @@ sensible level of currying.
4949``` ts
5050import * 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.3 .0/fp.ts" ;
52+ import * as iter from " https://deno.land/x/iter@v2.4 .0/fp.ts" ;
5353
5454const naturals = iter .create .increments (1 );
5555const filterOdds = iter .filter <number >((n ) => n % 2 === 1 );
Original file line number Diff line number Diff line change 11/** Version of the module */
2- export const VERSION = "2.3.1 " ;
2+ export const VERSION = "2.4.0 " ;
33/** License of the module */
44export const LICENSE = "MIT" ;
You can’t perform that action at this time.
0 commit comments