Skip to content

Commit 4570b37

Browse files
committed
docs: bump version to 0.3.1
1 parent d97535e commit 4570b37

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
```typescript
2929
#!/usr/bin/env dzx
30-
/// <reference path="https://deno.land/x/[email protected].0/types.d.ts" />
30+
/// <reference path="https://deno.land/x/[email protected].1/types.d.ts" />
3131

3232
$.verbose = true;
3333
$.shell = "/usr/local/bin/zsh";
@@ -78,7 +78,7 @@ await fs.ensureDir("./tmp");
7878
## Install
7979

8080
```
81-
deno install --allow-all --unstable -f https://deno.land/x/[email protected].0/dzx.ts
81+
deno install --allow-all --unstable -f https://deno.land/x/[email protected].1/dzx.ts
8282
```
8383

8484
> `--unstable` is required for the `bundle` command which uses `Deno.emit`, for
@@ -97,15 +97,15 @@ reference to the top of the file,
9797

9898
```
9999
#!/usr/bin/env dzx
100-
/// <reference path="https://deno.land/x/[email protected].0/types.d.ts" />
100+
/// <reference path="https://deno.land/x/[email protected].1/types.d.ts" />
101101
```
102102

103103
or you can import all symbol directly from the `dzx/mod.ts` module instead of
104104
using globals.
105105

106106
```ts
107107
#!/usr/bin/env dzx
108-
import { $, cd, fs, io, log, path } from "https://deno.land/x/[email protected].0/mod.ts";
108+
import { $, cd, fs, io, log, path } from "https://deno.land/x/[email protected].1/mod.ts";
109109
```
110110

111111
After making your script executable,
@@ -126,8 +126,8 @@ You can use `dzx` without installation by using next shebang. This also allows
126126
you to explicitly set the permissions for your script.
127127

128128
```typescript
129-
#!/usr/bin/env deno run --allow-run --allow-read --allow-env https://deno.land/x/[email protected].0/dzx.ts
130-
/// <reference path="https://deno.land/x/[email protected].0/types.d.ts" />
129+
#!/usr/bin/env deno run --allow-run --allow-read --allow-env https://deno.land/x/[email protected].1/dzx.ts
130+
/// <reference path="https://deno.land/x/[email protected].1/types.d.ts" />
131131

132132
console.log(`Hello ${$.blue.bold("world")}!`);
133133
```
@@ -143,7 +143,7 @@ the `dzx` cli.
143143

144144
```typescript
145145
#!/usr/bin/env dzx --worker --allow-read
146-
/// <reference path="https://deno.land/x/[email protected].0/types.d.ts" />
146+
/// <reference path="https://deno.land/x/[email protected].1/types.d.ts" />
147147

148148
console.log(`Hello from ${$.blue.bold("worker")}!`);
149149
```
@@ -352,7 +352,7 @@ notes.
352352

353353
```
354354
Usage: dzx [script] [args...]
355-
Version: 0.3.0
355+
Version: 0.3.1
356356
357357
Description:
358358

examples/markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ something like this:
9292

9393
```
9494
#!/usr/bin/env dzx
95-
/// <reference path="https://deno.land/x/dzx@0.2.4/types.d.ts" />
95+
/// <reference path="https://deno.land/x/dzx@0.3.1/types.d.ts" />
9696
// deno-lint-ignore-file
9797
9898
$.verbose = true;

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "0.2.4";
1+
export const VERSION = "0.3.1";

0 commit comments

Comments
 (0)