Skip to content

Commit 9eb0448

Browse files
committed
Merge branch 'main' of github.com:cdaringe/rad
2 parents 72f77a5 + edf1b27 commit 9eb0448

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

assets/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env sh
22
set -exo pipefail
33
curl -fsSL https://deno.land/x/install/install.sh | sh
4-
export __RAD_VERSION__=8.0.1
4+
export __RAD_VERSION__=8.0.2
55
deno install --global --unstable -f -A -n rad https://deno.land/x/rad@v$__RAD_VERSION__/src/bin.ts

assets/site/0005-manual.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Well that's not _super_ helpful! Let us study each these keys, one-by-one:
290290
| `fs` | a few sugar methods, `{ readFile, writeFile, mkdirp }` that work on strings, vs buffers, and assume utf8 for shorthand |
291291
| `sh` | execute a shell command. see the command task section above! |
292292
| `dependentResults` | results of `dependsOn` tasks. currently these are untyped. getting type inference here is tricky. PRs welcome! |
293-
| `logger` | the `rad` logger! a standard `Deno` logger with the commonplace log-level methods (e.g. `.info(...)`, `.debug(...)`, etc). see [the source](https://github.com/cdaringe/rad/blob/v8.0.1/src/logger.ts) |
293+
| `logger` | the `rad` logger! a standard `Deno` logger with the commonplace log-level methods (e.g. `.info(...)`, `.debug(...)`, etc). see [the source](https://github.com/cdaringe/rad/blob/v8.0.2/src/logger.ts) |
294294
| `path` | a direct reference to [deno node path](https://deno.land/std/node/path.ts). this API is likely to change if Deno implements a full, proper path module |
295295
| `task` | a reference to the internal `RadTask` |
296296
| `iter` | `AsyncIterable` utility functions |
@@ -306,7 +306,7 @@ v8.
306306
```bash
307307
#!/bin/sh
308308
# generated by deno install
309-
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-hrtime 'https://raw.githubusercontent.com/cdaringe/rad/v8.0.1/src/bin.ts' "$@"
309+
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-hrtime 'https://raw.githubusercontent.com/cdaringe/rad/v8.0.2/src/bin.ts' "$@"
310310
```
311311

312312
- extract the `deno run ...` command, drop the leading `exec` and trailing `$@`,
@@ -318,7 +318,7 @@ Example:
318318
```bash
319319
deno \
320320
run --inspect-brk -A --allow-run --allow-hrtime \
321-
'https://raw.githubusercontent.com/cdaringe/rad/v8.0.1/src/bin.ts' \
321+
'https://raw.githubusercontent.com/cdaringe/rad/v8.0.2/src/bin.ts' \
322322
test
323323
# ^ add any args of interest
324324
```

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Rad always consumes a `rad.ts` file, such as the one shown here:
4242

4343
```ts
4444
// rad.ts
45-
import { Task, Tasks } from "https://deno.land/x/rad@v8.0.1/src/mod.ts";
45+
import { Task, Tasks } from "https://deno.land/x/rad@v8.0.2/src/mod.ts";
4646

4747
// command/shell tasks
4848
// [name: string, cmd: string]
@@ -88,10 +88,10 @@ the [releases page](https://github.com/cdaringe/rad/releases).
8888

8989
| usage | install-method | install-steps |
9090
| ------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
91-
| cli | `deno` | `deno install --global -f -A -n rad https://raw.githubusercontent.com/cdaringe/rad/v8.0.1/src/bin.ts` |
91+
| cli | `deno` | `deno install --global -f -A -n rad https://raw.githubusercontent.com/cdaringe/rad/v8.0.2/src/bin.ts` |
9292
| cli | `docker` | `docker pull cdaringe/rad` <sup>1</sup> |
93-
| cli | `curl` | <code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/v8.0.1/assets/install.sh \| sh</code> (versioned)<br /><code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/main/assets/install.sh \| sh</code> (latest) |
94-
| library | `deno` | `import * as rad from https://github.com/cdaringe/rad/blob/main/v8.0.1/mod.ts` |
93+
| cli | `curl` | <code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/v8.0.2/assets/install.sh \| sh</code> (versioned)<br /><code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/main/assets/install.sh \| sh</code> (latest) |
94+
| library | `deno` | `import * as rad from https://github.com/cdaringe/rad/blob/main/v8.0.2/mod.ts` |
9595

9696
<sup>1</sup>For docker users, consider making a nice shell alias
9797

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// this file is auto-updated by the release process. see `rad patchInstallVersion`
22
// script, executed in CI by semantic release
33

4-
export const version = "8.0.1";
4+
export const version = "8.0.2";

0 commit comments

Comments
 (0)