diff --git a/README.md b/README.md index c4bd1ff..5f58f04 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Install `deno` with instructions To install a release version of the `apex` CLI, run the command below: ``` -deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.1.0/apex.ts +deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.1.1/apex.ts ``` To install from source, clone this repository and run `./apex run install` @@ -45,8 +45,8 @@ apex --help Output: ```console{title="apex help"} -Usage: apex - Version: v0.1.0 +Usage: apex + Version: v0.1.1 Description: diff --git a/apex.ts b/apex.ts index c47c550..c6c8035 100644 --- a/apex.ts +++ b/apex.ts @@ -21,7 +21,7 @@ import * as run from "./src/commands/run.ts"; import { setupLogger } from "./src/utils.ts"; // Version bump this on release. -const version = "v0.1.0"; +const version = "v0.1.1"; // This is necessary so we can modify the argument list. const args = Array.from(Deno.args);