Skip to content

Commit 3aadf44

Browse files
committed
chore: update version number in docs and examples
1 parent 353a748 commit 3aadf44

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A drakefile is a TypeScript module that:
3030
### Example drakefile
3131

3232
```typescript
33-
import { desc, run, task } from "https://deno.land/x/drake@v1.5.0/mod.ts";
33+
import { desc, run, task } from "https://deno.land/x/drake@v1.5.1/mod.ts";
3434

3535
desc("Minimal Drake task");
3636
task("hello", [], function () {
@@ -76,14 +76,14 @@ module can be imported from:
7676
- [deno.land](https://deno.land/x/drake) (Deno's third party modules registry).
7777
For example:
7878

79-
import { desc, run, task } from "https://deno.land/x/drake@v1.5.0/mod.ts";
79+
import { desc, run, task } from "https://deno.land/x/drake@v1.5.1/mod.ts";
8080

8181
- [nest.land](https://nest.land/package/drake) (a blockchain based Deno modules
8282
registry).\
8383
**NOTE**: Drake version numbers in `nest.land` URLs are not prefixed with a
8484
'v' character:
8585

86-
import { desc, run, task } from "https://x.nest.land/drake@1.5.0/mod.ts";
86+
import { desc, run, task } from "https://x.nest.land/drake@1.5.1/mod.ts";
8787

8888
Some Drake APIs are useful in non-drakefiles, use `lib.ts` (not `mod.ts`) to
8989
import them into non-drakefile modules.

egg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "drake",
33
"description": "Drake is a Make-like task runner for Deno",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"stable": true,
66
"files": [
77
"mod.ts",

examples/dynamic-tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
run,
88
sh,
99
task,
10-
} from "https://deno.land/x/drake@v1.5.0/mod.ts";
10+
} from "https://deno.land/x/drake@v1.5.1/mod.ts";
1111
// } from "../mod.ts";
1212

1313
desc("command-line usage");

examples/minimal-drakefile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { desc, run, task } from "https://deno.land/x/drake@v1.5.0/mod.ts";
2-
// import { desc, run, task } from "https://x.nest.land/drake@1.5.0/mod.ts";
1+
import { desc, run, task } from "https://deno.land/x/drake@v1.5.1/mod.ts";
2+
// import { desc, run, task } from "https://x.nest.land/drake@1.5.1/mod.ts";
33

44
desc("Minimal Drake task");
55
task("hello", [], function () {

0 commit comments

Comments
 (0)