Skip to content

Commit e557c8f

Browse files
committed
Bump version v0.3.0 -> v0.3.1
1 parent 2b51b32 commit e557c8f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.3.1
33
commit = True
44
tag = True
55

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Spun out from `repo_helper <https://github.com/domdfcoding/repo_helper>`_. Needs
9292
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/consolekit
9393
:alt: GitHub top language
9494

95-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v0.3.0
95+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v0.3.1
9696
:target: https://github.com/domdfcoding/consolekit/pulse
9797
:alt: GitHub commits since tagged version
9898

__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2020 Dominic Davis-Foster <[email protected]>
2727
"""
2828

29-
__version__ = "0.3.0"
29+
__version__ = "0.3.1"
3030

3131
repo_root = pathlib.Path(__file__).parent
3232
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')

consolekit/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
__author__: str = "Dominic Davis-Foster"
4343
__copyright__: str = "2020 Dominic Davis-Foster"
4444
__license__: str = "MIT License"
45-
__version__: str = "0.3.0"
45+
__version__: str = "0.3.1"
4646
__email__: str = "[email protected]"
4747

4848
if not bool(getattr(sys, "ps1", sys.flags.interactive)): # pragma: no cover
@@ -70,7 +70,7 @@ class SuggestionGroup(click.Group):
7070
"""
7171
Subclass of :class:`click.Group` which suggests the most similar command if the command is not found.
7272
73-
.. versionadded 0.3.0
73+
.. versionadded 0.3.1
7474
"""
7575

7676
def resolve_command(self, ctx, args): # noqa: D102

doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ consolekit
9393
:alt: GitHub top language
9494

9595
.. |commits-since| github-shield::
96-
:commits-since: v0.3.0
96+
:commits-since: v0.3.1
9797
:alt: GitHub commits since tagged version
9898

9999
.. |commits-latest| github-shield::

repo_helper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: '2020'
55
author: 'Dominic Davis-Foster'
66
77
username: 'domdfcoding'
8-
version: '0.3.0'
8+
version: '0.3.1'
99
license: 'MIT'
1010
short_desc: 'Additional utilities for click.'
1111

0 commit comments

Comments
 (0)