diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-28 20:51:19 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-28 20:51:19 -0700 |
commit | 21f45c49898740adb5bb84258e6c3d744eab5520 (patch) | |
tree | 70510ce430ec6230f528c321f6df222607f93e74 | |
parent | 2521bd2b45e67833f8f3232bc6b6e48d5b3127f8 (diff) | |
download | cmd2-git-21f45c49898740adb5bb84258e6c3d744eab5520.tar.gz |
Updated CHANGELOG
- Set date for 0.9.2 release to today
- Added comment about how we have improved the table_display.py example with the use of the new tableformatter module
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0acaf6df..556d02c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.9.2 (TBD, 2018) +## 0.9.2 (June 28, 2018) * Bug Fixes * Fixed issue where piping and redirecting did not work correctly with paths that had spaces * Enhancements @@ -9,6 +9,8 @@ * Added ``chop`` argument to ``cmd2.Cmd.ppaged()`` method for displaying output using a pager * If ``chop`` is ``False``, then ``self.pager`` is used as the pager * Otherwise ``self.pager_chop`` is used as the pager + * Greatly improved the [table_display.py](https://github.com/python-cmd2/cmd2/blob/master/examples/table_display.py) example + * Now uses the new [tableformatter](https://github.com/python-tableformatter/tableformatter) module which looks better than ``tabulate`` * Deprecations * The ``CmdResult`` helper class is *deprecated* and replaced by the improved ``CommandResult`` class * ``CommandResult`` has the following attributes: **stdout**, **stderr**, and **data** |