Skip to content

Commit 9282002

Browse files
docs(release): update assets with 6.9.1 [skip ci]
## [6.9.1](v6.9.0...v6.9.1) (2022-03-20) ### Bug Fixes * incorrect import map ref ([40355c7](40355c7))
1 parent 82619d6 commit 9282002

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
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.9.0
4+
export __RAD_VERSION__=6.9.1
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ const site: Task = {
148148
* changedPrereqs, // AsyncIterable<WalkInfo>
149149
* getChangedPrereqFilenames, // Promise<string>
150150
*/
151-
}
151+
},
152152
) => {
153153
await fs.mkdirp("public");
154154
logger.info("collecting prereq filenames");
155155
const filenames = await getPrereqFilenames();
156156
const html = await Promise.all(
157157
filenames.map((filename) =>
158158
Deno.readTextFile(filename).then((markdown) => marked(markdown))
159-
)
159+
),
160160
).then((htmlSnippets) => htmlSnippets.join("\n"));
161161
await Deno.writeTextFile("./public/index.html", html);
162162
},
@@ -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.9.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.1/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-hrtime --unstable 'https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/src/bin.ts' "$@"
305+
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-hrtime --unstable 'https://raw.githubusercontent.com/cdaringe/rad/v6.9.1/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-run --allow-hrtime --unstable \
317-
'https://raw.githubusercontent.com/cdaringe/rad/v6.9.0/src/bin.ts' \
317+
'https://raw.githubusercontent.com/cdaringe/rad/v6.9.1/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.9.0/src/mod.ts";
40+
import { Task, Tasks } from "https://deno.land/x/rad@v6.9.1/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.9.0/src/bin.ts` |
82+
| cli | `deno` | `deno install --unstable -f -A -n rad https://raw.githubusercontent.com/cdaringe/rad/v6.9.1/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.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` |
84+
| cli | `curl` | <code>curl -fsSL https://raw.githubusercontent.com/cdaringe/rad/v6.9.1/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.1/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.9.0";
4+
export const version = "6.9.1";

0 commit comments

Comments
 (0)