summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-11-09 21:38:54 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2021-11-09 21:38:54 -0500
commitaf473b87c19497e35e862d5f31236f86d11f89cb (patch)
tree93f90f5d6ab0ed165f80c789d4a21a3575f34da7
parentd2c97338d395f4ce2439cf6ccde0aabac413d959 (diff)
downloadcmd2-git-af473b87c19497e35e862d5f31236f86d11f89cb.tar.gz
Updated change log
-rw-r--r--CHANGELOG.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8278f01e..4df103c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,8 +7,8 @@
* Enhancements
* Added settings to Column class which prevent a table from overriding existing styles in header
and/or data text. This allows for things like nesting an AlternatingTable in another AlternatingTable.
- * AlternatingTable no longer applies background color to outer borders. This was done to improve appearance
- since the background color extended beyond the borders of the table.
+ * AlternatingTable no longer automatically applies background color to borders. This was done to improve
+ appearance since the background color extended beyond the borders of the table.
* Added ability to colorize all aspects of `AlternatingTables`, `BorderedTables`, and `SimpleTables`.
* Added support for 8-bit/256-colors with the `cmd2.EightBitFg` and `cmd2.EightBitBg` classes.
* Added support for 24-bit/RGB colors with the `cmd2.RgbFg` and `cmd2.RgbBg` classes.
@@ -44,7 +44,8 @@
* Argparse tab completer will complete remaining flag names if there are no more positionals to complete.
* Updated `async_alert()` to account for `self.prompt` not matching Readline's current prompt.
* Deletions (potentially breaking changes)
- * Deleted ``set_choices_provider()`` and ``set_completer()`` which were deprecated in 2.1.2
+ * Deleted `set_choices_provider()` and `set_completer()` which were deprecated in 2.1.2
+ * Renamed `set_default_argument_parser()` to `set_default_argument_parser_type()`
## 2.1.2 (July 5, 2021)
* Enhancements