diff --git a/README.md b/README.md index 47d79a9..a101d6b 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.0.16/apex.ts +deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.0.17/apex.ts ``` To install from source, clone this repository and run `./apex run install` @@ -46,7 +46,7 @@ Output: ```console{title="apex help"} Usage: apex - Version: v0.0.16 + Version: v0.0.17 Description: diff --git a/apex.ts b/apex.ts index 34d8a3d..fbb08d4 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.0.16"; +const version = "v0.0.17"; // This is necessary so we can modify the argument list. const args = Array.from(Deno.args);