diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-27 19:34:21 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-27 19:34:21 -0500 |
commit | 9aeb231a201e070c4897394ff79d96f21753d9b8 (patch) | |
tree | 6bb8edf3a53539b5313d8ed256ea591b7097ca8b | |
parent | 36c698767a3024b593fe143e401562f59d2a139c (diff) | |
download | cmd2-git-9aeb231a201e070c4897394ff79d96f21753d9b8.tar.gz |
Updated CHANGELOG with info on recent changes
-rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 110dec68..9bdb2714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,19 @@ ## 0.8.1 (TBD, 2018) +* Bug Fixes + * Fixed a bug if a non-existent **do_*** method was added to the ``exclude_from_help`` list + * Fixed a bug in a unit test which would fail if your home directory was empty on a Linux system + * Fixed outdated help text for the **edit** command + * Fixed outdated [remove_unused.py](https://github.com/python-cmd2/cmd2/blob/master/examples/remove_unused.py) * Enhancements * Added support for sub-menus. * See [submenus.py](https://github.com/python-cmd2/cmd2/blob/master/examples/submenus.py) for an example of how to use it * Added option for persistent readline history * See [persistent_history.py](https://github.com/python-cmd2/cmd2/blob/master/examples/persistent_history.py) for an example * See the [Searchable command history](http://cmd2.readthedocs.io/en/latest/freefeatures.html#searchable-command-history) section of the documentation for more info + * Improved PyPI packaging by including unit tests, examples, and docs in the tarball + * Improved documentation to make it more obvious that **poutput()** should be used instead of **print()** + * ``exclude_from_help`` and ``excludeFromHistory`` are now instance instead of class attributes ## 0.8.0 (February 1, 2018) * Bug Fixes |