From 188d11017d0413b26b18d4bf39579bd9cb40704b Mon Sep 17 00:00:00 2001 From: Stuart Rackham Date: Sun, 31 May 2020 09:43:49 +1200 Subject: [PATCH] build: Bump version number. --- README.md | 2 +- examples/minimal-drakefile.ts | 2 +- lib/utils.ts | 2 +- releases.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ae1c20..77b47e8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ A drakefile is a TypeScript module that: Example drakefile: ``` typescript -import { desc, run, task } from "https://deno.land/x/drake@v1.1.2/mod.ts"; +import { desc, run, task } from "https://deno.land/x/drake@v1.2.0/mod.ts"; desc("Minimal Drake task"); task("hello", [], function() { diff --git a/examples/minimal-drakefile.ts b/examples/minimal-drakefile.ts index e2a3cff..7a7b752 100644 --- a/examples/minimal-drakefile.ts +++ b/examples/minimal-drakefile.ts @@ -1,4 +1,4 @@ -import { desc, run, task } from "https://deno.land/x/drake@v1.1.2/mod.ts"; +import { desc, run, task } from "https://deno.land/x/drake@v1.2.0/mod.ts"; desc("Minimal Drake task"); task("hello", [], function () { diff --git a/lib/utils.ts b/lib/utils.ts index 7a3b90e..1945427 100644 --- a/lib/utils.ts +++ b/lib/utils.ts @@ -1,7 +1,7 @@ import { colors, existsSync, path, walkSync } from "./deps.ts"; import { env } from "./env.ts"; -const DRAKE_VERS = "1.1.2"; +const DRAKE_VERS = "1.2.0"; /** Returns the Drake version number string. */ export function vers(): string { diff --git a/releases.md b/releases.md index c4561ce..b5e346a 100644 --- a/releases.md +++ b/releases.md @@ -1,6 +1,6 @@ # Drake releases -## 1.1.2 / 2020-05-31 +## 1.2.0 / 2020-05-31 - Include a stack trace in the `abort` API output if the `"--debug"` environment option is `true`. - Added `makeDir` API.