diff --git a/README.md b/README.md index fe7ca94..6d5a40a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ This module is meant to provide memory-efficient lazy-evaluation iteration for i Use the following import: ```ts -import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.4.1/mod.ts'; ``` Make sure the `@v{version}` tag is the correct one you want. I'd recommend against master, as it could change without notice & might be broken (although I will try not to break it). @@ -79,12 +79,12 @@ The `Lazy` class is the root of the module, all things come from it and are deri ```ts // Static method import. -import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.4.1/mod.ts'; const iterable = Lazy.from([1, 2, 3, 4, 5]); // Direct function import. -import { from } from 'https://deno.land/x/lazy@v1.4.0/mod.ts'; +import { from } from 'https://deno.land/x/lazy@v1.4.1/mod.ts'; const iterable = from([1, 2, 3, 4, 5]); ``` diff --git a/docs/index.html b/docs/index.html index 7fd0056..2d191df 100644 --- a/docs/index.html +++ b/docs/index.html @@ -91,7 +91,7 @@
Use the following import:
-import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/mod.ts';
+ import { Lazy } from 'https://deno.land/x/lazy@v1.4.1/mod.ts';
Make sure the @v{version}
tag is the correct one you want. I'd recommend against master, as it could change without notice & might be broken (although I will try not to break it).
The packge can be found here: https://www.npmjs.com/package/@luvies/lazy.
@@ -112,12 +112,12 @@The Lazy
class is the root of the module, all things come from it and are derived off it. To start using it, do something like the following:
// Static method import.
-import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/mod.ts';
+import { Lazy } from 'https://deno.land/x/lazy@v1.4.1/mod.ts';
const iterable = Lazy.from([1, 2, 3, 4, 5]);
// Direct function import.
-import { from } from 'https://deno.land/x/lazy@v1.4.0/mod.ts';
+import { from } from 'https://deno.land/x/lazy@v1.4.1/mod.ts';
const iterable = from([1, 2, 3, 4, 5]);
After you have done this, the full power of the module is available to play with.
diff --git a/package.json b/package.json index 07338ec..6a8bb2d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "1.4.0", + "version": "1.4.1", "description": "A linq-like lazy iteration module that aims to support deno, node & browser", "main": "dist/mod.js", "repository": "luvies/lazy",