Skip to content

Commit

Permalink
docs: README and releases updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed May 20, 2020
1 parent 88aff81 commit 2ebe3e2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ for [Deno](https://deno.land/) inspired by
- File tasks and non-file tasks.
- Drake API functions for defining, registering and running tasks.

Tested with Deno 1.0.0 running on Ubuntu 18.04.
**Status**: Tested with Deno 1.0.1 running on Ubuntu 18.04. See
[releases](https://github.com/srackham/drake/blob/master/releases.md).


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

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

desc("Minimal Drake task");
task("hello", [], function() {
Expand Down
7 changes: 7 additions & 0 deletions releases.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Drake releases

## 1.1.0 / 2020-05-21
- APIs that are can be used in non-Drake modules are exposed via `lib.ts`.
- Log message format consistency.
- Tightened `env` runtime parameter checks.
- A lot of code refactoring including spliting `deps.ts` into separate test and runtime deps.


## 1.0.0 / 2020-05-15
Version 1.0.0 released.

0 comments on commit 2ebe3e2

Please sign in to comment.