Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luvies committed Feb 27, 2019
1 parent 02848b5 commit 183929c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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]);
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 183929c

Please sign in to comment.