diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-08-07 18:01:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 18:01:12 -0400 |
commit | 267434118955c2edfc59042d4a8c9515f63ef719 (patch) | |
tree | df3c5326f4110a680c8afe05cfab9da728afaff9 /CHANGELOG.md | |
parent | 47568c04373f679de2a39ef1d6f3168150d9c368 (diff) | |
parent | a04fdb50b372b3e1dda5200cc56150b2079ea596 (diff) | |
download | cmd2-git-267434118955c2edfc59042d4a8c9515f63ef719.tar.gz |
Merge pull request #969 from python-cmd2/subcmd_fix
Subcmd fix
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb532a1..de57031d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ +## 1.3.2 (August 7, 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. + ## 1.3.1 (August 6, 2020) * Bug Fixes * Fixed issue determining whether an argparse completer function required a reference to a containing - CommandSet. Also resolves issues determining the correct CommandSet instance when calling the argparse - argument completer function. Manifested as a TypeError when using `cmd2.Cmd.path_complete` as a completer - for an argparse-based command defined in a CommandSet + CommandSet. Also resolves issues determining the correct CommandSet instance when calling the argparse + argument completer function. Manifested as a TypeError when using `cmd2.Cmd.path_complete` as a completer + for an argparse-based command defined in a CommandSet ## 1.3.0 (August 4, 2020) * Enhancements |