From fa94320de5e0b2d2fbffa3186fd5b7df43d29833 Mon Sep 17 00:00:00 2001 From: redpeacock78 Date: Sat, 13 Nov 2021 12:26:04 +0900 Subject: [PATCH] docs: Change README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc97a7f..c62afa1 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i **🎉 It can now also handle binaries!** - Use Deno ```bash - $ deno install --allow-read --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.10/cli.ts + $ deno install --allow-read --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.11/cli.ts $ base85 -V ``` - Download Binary ```bash # Linux_x86 - $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.10/base85-linux-x86 -o /usr/local/bin/base85 + $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.11/base85-linux-x86 -o /usr/local/bin/base85 $ chmod +x /usr/local/bin/base85 $ base85 -V ``` @@ -33,7 +33,7 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i ``` ### Deno module ```typescript -import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.10/mod.ts"; +import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.11/mod.ts"; console.log(base85encode(new TextEncoder().encode("Hello World."))); Deno.stdout.writeSync(base85decode('<~87cURD]i,"Ebo8=zz~>'));