From 330b4f99b6ae1d3c19f7fa31edd740cfe0750620 Mon Sep 17 00:00:00 2001 From: Gianluca Gippetto Date: Wed, 11 Mar 2020 17:18:12 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.2=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Rename `CloupCommand` and `CloupGroup` resp. to just `Command` and `Group`. * [Feature] Add possibility of organizing subcommands of a `cloup.Group` in multiple help sections. * Various code improvements. --- HISTORY.rst | 8 ++++++++ README.rst | 4 ++-- cloup/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5e0b212..c68f77b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,14 @@ History ======= +0.2.0 (2020-03-11) +------------------ + +* Rename CloupCommand and CloupGroup resp. to just Command and Group +* [Feature] Add possibility of organizing subcommands of a cloup.Group in multiple help sections +* Various code improvements + + 0.1.0 (2020-02-25) ------------------ diff --git a/README.rst b/README.rst index 2f13060..3416062 100644 --- a/README.rst +++ b/README.rst @@ -15,8 +15,8 @@ cloup ``cloup`` (``CLick`` + ``grOUP``) extends `pallets/click `_ -to add option groups and the possibility to organize the subcommands of a ``Group`` -in multiple "help sections" with a title. +to add option groups and the possibility of organizing the subcommands of a ``Group`` +in multiple help sections. Currently, this package only affects how the command help is formatted, it doesn't allow to specify constraints on option groups. Look at diff --git a/cloup/__init__.py b/cloup/__init__.py index 14752a7..9fbd004 100644 --- a/cloup/__init__.py +++ b/cloup/__init__.py @@ -2,7 +2,7 @@ __author__ = """Gianluca Gippetto""" __email__ = 'gianluca.gippetto@gmail.com' -__version__ = '0.1.2' +__version__ = '0.2.0' # flake8: noqa F401 from ._cloup import ( diff --git a/setup.cfg b/setup.cfg index 08f200d..b8d312f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.2.0 commit = True tag = True diff --git a/setup.py b/setup.py index 49121bc..93df4bb 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/janLuke/cloup', - version='0.1.2', + version='0.2.0', zip_safe=False, )