Skip to content

Commit 9f15c64

Browse files
docs(release): update assets with 6.9.0 [skip ci]
# [6.9.0](v6.8.0...v6.9.0) (2022-03-20) ### Features * add rewriteImportMapPath ([db9a9d5](db9a9d5))
1 parent 55224b7 commit 9f15c64

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__=6.8.0
4+
export __RAD_VERSION__=6.9.0
55
deno install --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
@@ -286,7 +286,7 @@ Well that's not _super_ helpful! Let us study each these keys, one-by-one:
286286
| `fs` | a few sugar methods, `{ readFile, writeFile, mkdirp }` that work on strings, vs buffers, and assume utf8 for shorthand |
287287
| `sh` | execute a shell command. see the command task section above! |
288288
| `dependentResults` | results of `dependsOn` tasks. currently these are untyped. getting type inference here is tricky. PRs welcome! |
289-
| `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/v6.8.0/src/logger.ts) |
289+
| `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/v6.9.0/src/logger.ts) |
290290
| `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 |
291291
| `task` | a reference to the internal `RadTask` |
292292
| `iter` | `AsyncIterable` utility functions |
@@ -302,7 +302,7 @@ v8.
302302
```bash
303303
#!/bin/sh
304304
# generated by deno install
305-
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-plugin --allow-hrtime --unstable 'https://raw.githubusercontent.com/cdaringe/rad/v6.8.0/src/bin.ts' "$@"
305+
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-plugin --allow-hrtime --unstable 'https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/src/bin.ts' "$@"
306306
```
307307

308308
- extract the `deno run ...` command, drop the leading `exec` and trailing `$@`,
@@ -314,7 +314,7 @@ Example:
314314
```bash
315315
deno \
316316
run --inspect-brk -A --allow-plugin --allow-hrtime --unstable \
317-
'https://raw.githubusercontent.com/cdaringe/rad/v6.8.0/src/bin.ts' \
317+
'https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/src/bin.ts' \
318318
test
319319
# ^ add any args of interest
320320
```

readme.md

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

3838
```ts
3939
// rad.ts
40-
import { Task, Tasks } from "https://deno.land/x/rad@v6.8.0/src/mod.ts";
40+
import { Task, Tasks } from "https://deno.land/x/rad@v6.9.0/src/mod.ts";
4141

4242
// command/shell tasks
4343
const format = `prettier --write`;
@@ -79,10 +79,10 @@ the [releases page](https://github.com/cdaringe/rad/releases).
7979

8080
| usage | install-method | install-steps |
8181
| ------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
82-
| cli | `deno` | `deno install --unstable -f -A -n rad https://raw.githubusercontent.com/cdaringe/rad/v6.8.0/src/bin.ts` |
82+
| cli | `deno` | `deno install --unstable -f -A -n rad https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/src/bin.ts` |
8383
| cli | `docker` | `docker pull cdaringe/rad` <sup>1</sup> |
84-
| cli | `curl` | <code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/v6.8.0/assets/install.sh \| sh</code> (versioned)<br /><code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/main/assets/install.sh \| sh</code> (latest) |
85-
| library | `deno` | `import * as rad from https://github.com/cdaringe/rad/blob/main/v6.8.0/mod.ts` |
84+
| cli | `curl` | <code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/assets/install.sh \| sh</code> (versioned)<br /><code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/main/assets/install.sh \| sh</code> (latest) |
85+
| library | `deno` | `import * as rad from https://github.com/cdaringe/rad/blob/main/v6.9.0/mod.ts` |
8686

8787
<sup>1</sup>For docker users, consider making a nice shell alias
8888

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 = "6.8.0";
4+
export const version = "6.9.0";

0 commit comments

Comments
 (0)