Skip to content

Commit

Permalink
chore: bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed May 19, 2022
1 parent 028a08e commit ea1246e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Drake Changelog

## 1.5.2 / 2022-05-20

- FIX: Drake crashes when listing tasks with no description (https://github.com/srackham/drake/issues/18).
- Upgraded to Deno 1.22.0, standard modules 0.140.0.

## 1.5.1 / 2022-02-20

- Upgraded to Deno 1.19.0, standard modules 0.123.0.
Expand Down Expand Up @@ -36,7 +41,7 @@

## 1.4.2 / 2020-09-26

- fix: Allow Drakefile execution with Deno `--unstable` option.
- FIX: Allow Drakefile execution with Deno `--unstable` option.
- Export types `Action`, `EnvValue` from `mod.ts` module.
- Export types `ShCaptureOpts`, `ShOpts`, `ShOutput` from `lib.ts` module.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
file system _mtimes_ are used directly (see
[mtime comparison considered harmful](https://apenwarr.ca/log/20181113)).

**Status**: Tested with Deno 1.19.0 running on Github CI the following
**Status**: Tested with Deno 1.22.0 running on Github CI the following
platforms: `ubuntu-latest`, `macos-latest`, `windows-latest`. See also the
[changelog](CHANGELOG.md).

Expand All @@ -30,7 +30,7 @@ A drakefile is a TypeScript module that:
### Example drakefile

```typescript
import { desc, run, task } from "https://deno.land/x/drake@v1.5.1/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.5.2/mod.ts";

desc("Minimal Drake task");
task("hello", [], function () {
Expand Down Expand Up @@ -76,14 +76,14 @@ module can be imported from:
- [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.5.1/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.5.2/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.5.1/mod.ts";
import { desc, run, task } from "https://x.nest.land/drake@1.5.2/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 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.5.1",
"version": "1.5.2",
"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/drake@v1.5.1/mod.ts";
} from "https://deno.land/x/drake@v1.5.2/mod.ts";
// } from "../mod.ts";

desc("command-line usage");
Expand Down
3 changes: 1 addition & 2 deletions examples/minimal-drakefile.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { desc, run, task } from "https://deno.land/x/drake@v1.5.1/mod.ts";
// import { desc, run, task } from "https://x.nest.land/drake@1.5.1/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.5.2/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, path, walkSync } from "./deps.ts";
import { env } from "./env.ts";

const DRAKE_VERS = "1.5.1";
const DRAKE_VERS = "1.5.2";

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

0 comments on commit ea1246e

Please sign in to comment.