summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-21 00:04:49 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-21 00:04:49 -0400
commitdd61db791b0886fd103c917e2323ae27ae58423f (patch)
tree250274e804f8ce0abac4adcfaac4eaaf981a28aa /CHANGELOG.md
parent0ccde8ba416e36af2484276d9763a8742214528d (diff)
downloadcmd2-git-dd61db791b0886fd103c917e2323ae27ae58423f.tar.gz
run_pyscript now passes a keyword arg to do_py instead of using a hidden argparse flag
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 01180001..03b88d03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,9 @@
* Made `ipy` consistent with `py` in the following ways
* `ipy` returns whether any of the commands run in it returned True to stop command loop
* `Cmd.in_pyscript()` returns True while in `ipy`.
- * Starting `ipy` when `Cmd.in_pyscript()` is already True is not allowed.
+ * Starting `ipy` when `Cmd.in_pyscript()` is already True is not allowed.
+ * `with_argument_list`, `with_argparser`, and `with_argparser_and_unknown_args` wrappers now pass
+ `kwargs` through to their wrapped command function.
## 1.0.2 (April 06, 2020)
* Bug Fixes