Skip to content

Commit

Permalink
build: bump version number to 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Oct 3, 2020
1 parent 78103ba commit 3a349b7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "drake",
"description": "Drake is a Make-like task runner for Deno",
"version": "1.4.2",
"version": "1.4.3",
"stable": true,
"files": [
"mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
run,
sh,
task,
} from "https://deno.land/x/[email protected].2/mod.ts";
} from "https://deno.land/x/[email protected].3/mod.ts";
// } from "../mod.ts";

desc("command-line usage");
Expand Down
4 changes: 2 additions & 2 deletions examples/minimal-drakefile.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { desc, run, task } from "https://deno.land/x/[email protected].2/mod.ts";
// import { desc, run, task } from "https://x.nest.land/[email protected].2/mod.ts";
import { desc, run, task } from "https://deno.land/x/[email protected].3/mod.ts";
// import { desc, run, task } from "https://x.nest.land/[email protected].3/mod.ts";

desc("Minimal Drake task");
task("hello", [], function () {
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { colors, existsSync, path, walkSync } from "./deps.ts";
import { env } from "./env.ts";

const DRAKE_VERS = "1.4.2";
const DRAKE_VERS = "1.4.3";

/** Returns the Drake version number string. */
export function vers(): string {
Expand Down

0 comments on commit 3a349b7

Please sign in to comment.