diff --git a/README.md b/README.md index f1d1b76..047fda6 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ Base85 (Adobe) encode or decode standard input, to standard output. ### CLI - Use Deno ```bash - $ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.1/cli.ts + $ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.2/cli.ts $ base85 -V ``` - Download Binary ```bash # Linux_x86 - $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.1/base85-linux-x86 -o /usr/local/bin/base85 + $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.2/base85-linux-x86 -o /usr/local/bin/base85 $ chmod +x /usr/local/bin/base85 $ base85 -V ``` @@ -31,7 +31,7 @@ Base85 (Adobe) encode or decode standard input, to standard output. ``` ### Deno module ```typescript -import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.1/mod.ts"; +import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.2/mod.ts"; console.log(base85encode("Hello World.")); console.log(base85decode('<~87cURD]i,"Ebo8=zz~>'));