Skip to content

Commit c4157bf

Browse files
committed
docs: Change README.md
1 parent a4ca2a7 commit c4157bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i
77
**🎉 It can now also handle binaries!**
88
- Use Deno
99
```bash
10-
$ deno install --allow-read --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.11/cli.ts
10+
$ deno install --allow-read --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.12/cli.ts
1111
$ base85 -V
1212
```
1313
- Download Binary
1414
```bash
1515
# Linux_x86
16-
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.11/base85-linux-x86 -o /usr/local/bin/base85
16+
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.12/base85-linux-x86 -o /usr/local/bin/base85
1717
$ chmod +x /usr/local/bin/base85
1818
$ base85 -V
1919
```
@@ -33,7 +33,7 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i
3333
```
3434
### Deno module
3535
```typescript
36-
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.11/mod.ts";
36+
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.12/mod.ts";
3737

3838
console.log(base85encode(new TextEncoder().encode("Hello World.")));
3939
Deno.stdout.writeSync(base85decode('<~87cURD]i,"Ebo8=zz~>'));

0 commit comments

Comments
 (0)