From 9f1bb7adf12289550f13c0dd3d826eb7019af2e5 Mon Sep 17 00:00:00 2001 From: Luke Davies Date: Tue, 5 Mar 2019 19:54:22 +0000 Subject: [PATCH] v1.4.0 --- README.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index da204d2..84ce905 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,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.3.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/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). @@ -78,12 +78,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.3.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.4.0/mod.ts'; const iterable = Lazy.from([1, 2, 3, 4, 5]); // Direct function import. -import { from } from 'https://deno.land/x/lazy@v1.3.0/mod.ts'; +import { from } from 'https://deno.land/x/lazy@v1.4.0/mod.ts'; const iterable = from([1, 2, 3, 4, 5]); ``` diff --git a/package.json b/package.json index d27c3c3..07338ec 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "1.3.0", + "version": "1.4.0", "description": "A linq-like lazy iteration module that aims to support deno, node & browser", "main": "dist/mod.js", "repository": "luvies/lazy",