From 183929c888580e8439537c1f6595258e8d86d21a Mon Sep 17 00:00:00 2001 From: Luke Davies Date: Wed, 27 Feb 2019 22:11:28 +0000 Subject: [PATCH] v1.2.0 --- README.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0180453..69cfe65 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,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.1.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.2.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). @@ -74,12 +74,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.1.0/mod.ts'; +import { Lazy } from 'https://deno.land/x/lazy@v1.2.0/mod.ts'; const iterable = Lazy.from([1, 2, 3, 4, 5]); // Direct function import. -import { from } from 'https://deno.land/x/lazy@v1.1.0/mod.ts'; +import { from } from 'https://deno.land/x/lazy@v1.2.0/mod.ts'; const iterable = from([1, 2, 3, 4, 5]); ``` diff --git a/package.json b/package.json index 586d36a..1dba59b 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "1.1.0", + "version": "1.2.0", "description": "A linq-like lazy iteration module that aims to support deno, node & browser", "main": "dist/mod.js", "repository": "luvies/lazy",