14
0
forked from pool/python-cmd2

Accepting request 888322 from home:mnhauke

- Update to version 1.5.0
  * Fixed bug where setting always_show_hint=True did not show a
    hint when completing Settables.
  * Fixed bug in editor detection logic on Linux systems that do
    not have which.
  * Fixed bug in table creator where column headers with tabs
    would result in an incorrect width calculation.
  * Fixed FileNotFoundError which occurred when running history
    --clear and no history file existed.
  * Added silent_startup_script option to cmd2.Cmd.__init__().
    If True, then the startup script's output will be suppressed.
    Anything written to stderr will still display.

OBS-URL: https://build.opensuse.org/request/show/888322
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cmd2?expand=0&rev=80
This commit is contained in:
2021-04-26 09:10:41 +00:00
committed by Git OBS Bridge
parent 285ddaed04
commit dac9ff4e72
4 changed files with 21 additions and 5 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sun Apr 25 13:46:11 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 1.5.0
* Fixed bug where setting always_show_hint=True did not show a
hint when completing Settables.
* Fixed bug in editor detection logic on Linux systems that do
not have which.
* Fixed bug in table creator where column headers with tabs
would result in an incorrect width calculation.
* Fixed FileNotFoundError which occurred when running history
--clear and no history file existed.
* Added silent_startup_script option to cmd2.Cmd.__init__().
If True, then the startup script's output will be suppressed.
Anything written to stderr will still display.
-------------------------------------------------------------------
Thu Dec 3 03:11:35 UTC 2020 - Benjamin Greiner <code@bnavigator.de>