diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-08 21:48:00 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-08 21:48:00 -0500 |
commit | 303e9cb734d217fe4f142040518e3dd7a2a2b3ee (patch) | |
tree | cb069a30f8b1410f27bfc1a39b8bcc39547997ed /tests/test_cmd2.py | |
parent | 4895d5d8db4e57e2ef9a062473a8536f4f07f213 (diff) | |
download | cmd2-git-303e9cb734d217fe4f142040518e3dd7a2a2b3ee.tar.gz |
Added optional persistent readline history feature
- Including an example and info in the Sphinx docs
Also:
- Created CHANGELOG entry for 0.8.1 release
- Added info to README about new sub-menu feature
- Bumped version to 0.8.1
TODO:
- Added a unit test for the persistent readline history feature
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 186def65..5f56803d 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -25,7 +25,7 @@ from conftest import run_cmd, normalize, BASE_HELP, HELP_HISTORY, SHORTCUTS_TXT, def test_ver(): - assert cmd2.__version__ == '0.8.0' + assert cmd2.__version__ == '0.8.1' def test_empty_statement(base_app): |