summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-11 15:19:48 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-11 15:19:48 -0400
commit9ca1ecfe75e85b19c7cd16e0cf5ac133ee287aff (patch)
treebc323e40ae91e9b8f5fcea216e167f708721607e
parentc1312cadba42f273179a6bc08ec5a8d22ca23891 (diff)
downloadcmd2-git-9ca1ecfe75e85b19c7cd16e0cf5ac133ee287aff.tar.gz
Updated CHANGELOG
-rw-r--r--CHANGELOG.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b7bc5c3..27cf4e67 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
## 0.9.15 (July TBD, 2019)
+*# Enhancements
+ * Greatly simplified using argparse-based tab completion. The new interface is a complete overhaul that breaks
+ the previous way of specifying completion and choices functions. See header of argparse_completer.py for more
+ information.
* **Renamed Commands Notice**
* The following commands were renamed in the last release and have been removed in this release
* `load` - replaced by `run_script`
@@ -9,7 +13,7 @@
* Breaking Changes
* Restored `cmd2.Cmd.statement_parser` to be a public attribute (no underscore)
* Since it can be useful for creating [post-parsing hooks](https://cmd2.readthedocs.io/en/latest/features/hooks.html#postparsing-hooks)
-
+ * Completely overhauled the interface for adding tab completion to argparse arguments. See enhancements for more details.
## 0.9.14 (June 29, 2019)
* Enhancements