From c4d737602fce94c6048ccd666e967c0c3de0f7dd Mon Sep 17 00:00:00 2001 From: pkedy Date: Fri, 27 Jan 2023 23:48:00 +0000 Subject: [PATCH] v0.0.18 release --- README.md | 4 ++-- apex.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a101d6b..245eb98 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.17/apex.ts +deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.0.18/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.17 + Version: v0.0.18 Description: diff --git a/apex.ts b/apex.ts index fbb08d4..ce0f7c1 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.17"; +const version = "v0.0.18"; // This is necessary so we can modify the argument list. const args = Array.from(Deno.args);