Skip to content

Commit dc8f488

Browse files
committed
Upgrade CLU to 2.0.0b2 and add the get-command-model command
1 parent 0f722c2 commit dc8f488

4 files changed

Lines changed: 239 additions & 198 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.9.0b1 - March 10, 2023
4+
5+
### 🚀 New
6+
7+
* Upgrade `CLU` to `2.0.0b2` and add the `get-command-model` command.
8+
9+
310
## 0.8.0 - March 3, 2023
411

512
### ✨ Improved

archon/actor/commands/__init__.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111
import os
1212

1313
import click
14-
from clu.parsers.click import CluGroup, get_schema, help_, keyword, ping, version
14+
from clu.parsers.click import (
15+
CluGroup,
16+
get_command_model,
17+
get_schema,
18+
help_,
19+
keyword,
20+
ping,
21+
version,
22+
)
1523

1624

1725
@click.group(cls=CluGroup)
@@ -24,6 +32,7 @@ def parser(*args):
2432
parser.add_command(help_)
2533
parser.add_command(get_schema)
2634
parser.add_command(keyword)
35+
parser.add_command(get_command_model)
2736

2837

2938
# Autoimport all modules in this directory so that they are added to the parser.

0 commit comments

Comments
 (0)