Skip to content

Commit

Permalink
v0.0.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson authored and github-actions[bot] committed Jan 24, 2023
1 parent a691436 commit 8f40c81
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
33 changes: 17 additions & 16 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.15/apex.ts
deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.0.16/apex.ts
```

To install from source, clone this repository and run `./apex run install`
Expand All @@ -45,31 +45,32 @@ apex --help
Output:

```console{title="apex help"}
Usage: apex
Version: v0.0.12
Usage: apex
Version: v0.0.16
Description:
A code generation tool using Apexlang, an interface definition language (IDL) for modeling software.
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.
-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.
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.
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.
```

## Running tests
Expand Down
2 changes: 1 addition & 1 deletion apex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { findApexConfig, setupLogger } from "./src/utils.ts";
import { parseConfigYaml } from "./src/config.ts";

// Version bump this on release.
const version = "v0.0.15";
const version = "v0.0.16";

const args = Deno.args;

Expand Down

0 comments on commit 8f40c81

Please sign in to comment.