Skip to content

Commit

Permalink
build: bump version number to 1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Apr 20, 2021
1 parent 62e9a45 commit fed2df2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
deno-version: [1.6.3]
deno-version: [1.9.0]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
Expand Down
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.6",
"version": "1.4.7",
"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].6/mod.ts";
} from "https://deno.land/x/[email protected].7/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].6/mod.ts";
// import { desc, run, task } from "https://x.nest.land/[email protected].6/mod.ts";
import { desc, run, task } from "https://deno.land/x/[email protected].7/mod.ts";
// import { desc, run, task } from "https://x.nest.land/[email protected].7/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.6";
const DRAKE_VERS = "1.4.7";

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

0 comments on commit fed2df2

Please sign in to comment.