Skip to content

Commit

Permalink
build: bump version number to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Sep 19, 2020
1 parent 509cddd commit d40ff2e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Drake Changelog

## 1.4.1 / 2020-09-??
## 1.4.1 / 2020-09-20
- Publish Drake to [nest.land](https://nest.land/package/drake) (in addition to
[deno.land](https://deno.land/x/drake)).

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for [Deno](https://deno.land/) inspired by
- File tasks and non-file tasks.
- Drake API functions for defining, registering and running tasks.

**Status**: Tested with Deno 1.4.0 running on Ubuntu 20.04, Windows 10. See
**Status**: Tested with Deno 1.4.1 running on Ubuntu 20.04, Windows 10. See
the [changelog](CHANGELOG.md).


Expand All @@ -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.4.0/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.4.1/mod.ts";

desc("Minimal Drake task");
task("hello", [], function() {
Expand Down Expand Up @@ -69,12 +69,12 @@ A Drakefile uses Drake APIs imported from the Drake `mod.ts` module file. The mo

- [deno.land](https://deno.land/x/drake) (Deno's third party modules registry). For example:

import { desc, run, task } from "https://deno.land/x/drake@v1.4.0/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.4.1/mod.ts";

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

import { desc, run, task } from "https://x.nest.land/drake@1.4.0/mod.ts";
import { desc, run, task } from "https://x.nest.land/drake@1.4.1/mod.ts";

Some Drake APIs are useful in non-drakefiles, use `lib.ts` (not `mod.ts`) to
import them into non-drakefile modules.
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/drake@v1.4.0/mod.ts";
} from "https://deno.land/x/drake@v1.4.1/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/drake@v1.4.0/mod.ts";
// import { desc, run, task } from "https://x.nest.land/drake@1.3.2/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.4.1/mod.ts";
// import { desc, run, task } from "https://x.nest.land/drake@1.4.1/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.0";
const DRAKE_VERS = "1.4.1";

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

0 comments on commit d40ff2e

Please sign in to comment.