Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.2.0
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
janluke committed Mar 11, 2020
1 parent 09dad09 commit 330b4f9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ cloup
``cloup`` (``CLick`` + ``grOUP``) extends `pallets/click <https://github.com/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
Expand Down
2 changes: 1 addition & 1 deletion cloup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Gianluca Gippetto"""
__email__ = '[email protected]'
__version__ = '0.1.2'
__version__ = '0.2.0'

# flake8: noqa F401
from ._cloup import (
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.2.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 330b4f9

Please sign in to comment.