diff options
author | Eric Lin <anselor@gmail.com> | 2020-08-07 18:17:14 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-10 11:28:29 -0400 |
commit | 6c939fb0fffd076b4471591fda79f85db2aab460 (patch) | |
tree | c511a3d549d4fcbbc3073a395f3e475a8369c208 /CHANGELOG.md | |
parent | 267434118955c2edfc59042d4a8c9515f63ef719 (diff) | |
download | cmd2-git-6c939fb0fffd076b4471591fda79f85db2aab460.tar.gz |
Will now traverse down CommandSet inheritance tree to find all leaf descendants.1.3.2
CommandSet now has a check to ensure it is only registered with one
cmd2.Cmd instance at a time.
Adds function to find command set by type and by command name
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index de57031d..2ba8c53c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ -## 1.3.2 (August 7, 2020) +## 1.3.2 (August 10, 2020) * Bug Fixes * Fixed `prog` value of subcommands added with `as_subcommand_to()` decorator. * Fixed missing settings in subcommand parsers created with `as_subcommand_to()` decorator. These settings include things like description and epilog text. + * Fixed issue with CommandSet auto-discovery only searching direct sub-classes +* Enhancements + * Added functions to fetch registered CommandSets by type and command name ## 1.3.1 (August 6, 2020) * Bug Fixes |