summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-08-07 15:40:34 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-08-07 15:40:34 -0400
commit2bb7f349661d903b7d0b491529dc8ecff9183012 (patch)
tree0905bdb0316ab4b6963807e704205371e381543e /CHANGELOG.md
parent3ada4bd53925ca20fdeb16fa971814637dc42e4d (diff)
downloadcmd2-git-2bb7f349661d903b7d0b491529dc8ecff9183012.tar.gz
Updated change log
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md12
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