Skip to content

Commit 947c8fe

Browse files
pkedygithub-actions[bot]
authored andcommitted
v0.1.2 release
1 parent c666c89 commit 947c8fe

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Install `deno` with instructions
2222
To install a release version of the `apex` CLI, run the command below:
2323

2424
```
25-
deno install -A -f -n apex https://deno.land/x/[email protected].1/apex.ts
25+
deno install -A -f -n apex https://deno.land/x/[email protected].2/apex.ts
2626
```
2727

2828
To install from source, clone this repository and run `./apex install`
@@ -46,30 +46,30 @@ Output:
4646

4747
```console{title="apex help"}
4848
Usage: apex
49-
Version: v0.1.1
49+
Version: v0.1.2
5050
51-
Description:
51+
Description:
5252
53-
A complete project tool suite based on Apexlang, an interface definition language (IDL) for modeling software.
53+
A complete project tool suite based on Apexlang, an interface definition language (IDL) for modeling software.
5454
55-
Options:
55+
Options:
5656
57-
-h, --help - Show this help.
58-
-V, --version - Show the version number for this program.
57+
-h, --help - Show this help.
58+
-V, --version - Show the version number for this program.
5959
60-
Commands:
60+
Commands:
6161
62-
install <location> - Install templates locally.
63-
new <template> <dir> - Create a new project directory using a template.
64-
init <template> - Initialize a project using a template.
65-
generate [configuration...] - Run Apexlang generators from a given configuration.
66-
list - List available resources.
67-
describe - Describe available resources.
68-
watch [configuration...] - Watch configuration for changes and trigger code generation.
69-
run [tasks...] - Run tasks.
70-
upgrade - Upgrade apex executable to latest or given version.
71-
help [command] - Show this help or the help of a sub-command.
72-
completions - Generate shell completions.
62+
install <location> - Install templates locally.
63+
new <template> <dir> - Create a new project directory using a template.
64+
init <template> - Initialize a project using a template.
65+
generate [configuration...] - Run Apexlang generators from a given configuration.
66+
list - List available resources.
67+
describe - Describe available resources.
68+
watch [configuration...] - Watch configuration for changes and trigger code generation.
69+
run [tasks...] - Run tasks.
70+
upgrade - Upgrade apex executable to latest or given version.
71+
help [command] - Show this help or the help of a sub-command.
72+
completions - Generate shell completions.
7373
```
7474

7575
## Running tests

apex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import * as run from "./src/commands/run.ts";
2626
import { setupLogger } from "./src/utils.ts";
2727

2828
// Version bump this on release.
29-
const version = "v0.1.1";
29+
const version = "v0.1.2";
3030

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

0 commit comments

Comments
 (0)