You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,23 @@
1
+
## 0.8.5 (April 15, 2018)
2
+
* Bug Fixes
3
+
* Fixed a bug with all argument decorators where the wrapped function wasn't returning a value and thus couldn't cause the cmd2 app to quit
4
+
5
+
* Enhancements
6
+
* Added support for verbose help with -v where it lists a brief summary of what each command does
7
+
* Added support for categorizing commands into groups within the help menu
8
+
* See the [Grouping Commands](http://cmd2.readthedocs.io/en/latest/argument_processing.html?highlight=verbose#grouping-commands) section of the docs for more info
9
+
* See [help_categories.py](https://github.com/python-cmd2/cmd2/blob/master/examples/help_categories.py) for an example
10
+
* Tab completion of paths now supports ~user user path expansion
11
+
* Simplified implementation of various tab completion functions so they no longer require ``ctypes``
12
+
* Expanded documentation of ``display_matches`` list to clarify its purpose. See cmd2.py for this documentation.
13
+
* Adding opening quote to tab completion if any of the matches have a space.
14
+
15
+
***Python 2 EOL notice**
16
+
* This is the last release where new features will be added to ``cmd2`` for Python 2.7
17
+
* The 0.9.0 release of ``cmd2`` will support Python 3.4+ only
18
+
* Additional 0.8.x releases may be created to supply bug fixes for Python 2.7 up until August 31, 2018
19
+
* After August 31, 2018 not even bug fixes will be provided for Python 2.7
20
+
1
21
## 0.8.4 (April 10, 2018)
2
22
* Bug Fixes
3
23
* Fixed conditional dependency issue in setup.py that was in 0.8.3.
0 commit comments