Skip to content

Commit

Permalink
v0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson authored and github-actions[bot] committed Feb 10, 2023
1 parent 393b7fd commit 7ab4750
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 30 deletions.
31 changes: 2 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19/apex.ts
deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.1.0/apex.ts
```

To install from source, clone this repository and run `./apex run install`
Expand All @@ -44,34 +44,7 @@ apex --help

Output:

```console{title="apex help"}
Usage: apex
Version: v0.0.19
Description:
A complete project tool suite based on Apexlang, an interface definition language (IDL) for modeling software.
Options:
-h, --help - Show this help.
-V, --version - Show the version number for this program.
Commands:
install <location> - Install templates locally.
new <template> <dir> - Create a new project directory using a template.
init <template> - Initialize a project using a template.
generate [configuration...] - Run Apexlang generators from a given configuration.
list - List available resources.
describe - Describe available resources.
watch [configuration...] - Watch configuration for changes and trigger code generation.
run [tasks...] - Run tasks.
upgrade - Upgrade apex executable to latest or given version.
help [command] - Show this help or the help of a sub-command.
completions - Generate shell completions.
```
```console{title="apex help"}```

## Running tests

Expand Down
2 changes: 1 addition & 1 deletion apex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.19";
const version = "v0.1.0";

// This is necessary so we can modify the argument list.
const args = Array.from(Deno.args);
Expand Down

0 comments on commit 7ab4750

Please sign in to comment.