Skip to content

Commit

Permalink
docs: Release updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Jun 15, 2020
1 parent 5435556 commit 81e36ad
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 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.0.4 running on Ubuntu 18.04, Windows 10. See
**Status**: Tested with Deno 1.1.0 running on Ubuntu 20.04, Windows 10. See
[releases](https://github.com/srackham/drake/blob/master/releases.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.2.2/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.2.3/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.2.2/mod.ts";
import { desc, run, task } from "https://deno.land/x/drake@v1.2.3/mod.ts";

desc("Minimal Drake task");
task("hello", [], function () {
Expand Down
13 changes: 8 additions & 5 deletions releases.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
# Drake releases

## 1.2.2 / 2020-06-04
- Upgraded to Deno `std/0.56.0`.
## 1.2.3 / 2020-06-16
- Upgraded to Deno version 1.1.0,`std/0.57.0`.

## 1.2.2 / 2020-06-04
- Upgraded to Deno `std/0.55.0`.
- Upgraded to Deno version 1.0.5, `std/0.56.0`.

## 1.2.1 / 2020-06-04
- Upgraded to Deno version 1.0.4, `std/0.55.0`.

## 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.
- FIX: An error occured if a File task contained a Normal task prerequisite.
- Upgraded to Deno `std/0.54.0`.
- Upgraded to Deno version 1.0.3, `std/0.54.0`.


## 1.1.1 / 2020-05-21
Expand All @@ -23,7 +26,7 @@
- Log message format consistency.
- Tightened `env` runtime parameter checks.
- A lot of code refactoring including spliting `deps.ts` into separate test and runtime deps.
- Upgraded to Deno `std/0.52.0`.
- Upgraded to Deno version 1.0.1, `std/0.52.0`.


## 1.0.0 / 2020-05-15
Expand Down

0 comments on commit 81e36ad

Please sign in to comment.