Skip to content

Commit

Permalink
build: Bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed May 30, 2020
1 parent b9dca0f commit 188d110
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal-drakefile.ts
Original file line number Diff line number Diff line change
@@ -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 () {
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.1.2";
const DRAKE_VERS = "1.2.0";

/** Returns the Drake version number string. */
export function vers(): string {
Expand Down
2 changes: 1 addition & 1 deletion releases.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 188d110

Please sign in to comment.