- Update to 0.9.16:

* Fixed inconsistent parsing/tab completion behavio
  * Create directory for the persistent history file if it does not already exist
  * Aliases and macros can no longer have the same name as a command

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cmd2?expand=0&rev=55
This commit is contained in:
Tomáš Chvátal 2019-09-13 10:58:44 +00:00 committed by Git OBS Bridge
parent ee96ea4e4c
commit c75d75a4a2
4 changed files with 14 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fcbd6741fe4408e8b7f9941b941090920094051da23c0cf738812f753f1b7e4c
size 550232

3
cmd2-0.9.16.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b78379d53aff811d1deac720bbe71661769822a5fb2d830cd730656d180fb3d
size 550919

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Sep 13 10:57:37 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 0.9.16:
* Fixed inconsistent parsing/tab completion behavio
* Create directory for the persistent history file if it does not already exist
* Aliases and macros can no longer have the same name as a command
-------------------------------------------------------------------
Thu Aug 1 11:29:12 UTC 2019 - pgajdos@suse.com

View File

@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-cmd2
Version: 0.9.15
Version: 0.9.16
Release: 0
Summary: Extra features for standard library's cmd module
License: MIT
@ -35,11 +35,11 @@ Requires: python-attrs >= 16.3.0
Requires: python-colorama >= 0.3.7
Requires: python-pyperclip >= 1.6
Requires: python-wcwidth >= 0.1.7
%if %python3_version_nodots < 35
BuildArch: noarch
%if %{python3_version_nodots} < 35
Requires: python-contextlib2
Requires: python-typing
%endif
BuildArch: noarch
# SECTION Test requirements
BuildRequires: %{python_module attrs >= 16.3.0}
BuildRequires: %{python_module colorama >= 0.3.7}