From e557c8fd820a18a5a4f1ea3d48c47b4427878ca2 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Wed, 11 Nov 2020 13:49:04 +0000 Subject: [PATCH] Bump version v0.3.0 -> v0.3.1 --- .bumpversion.cfg | 2 +- README.rst | 2 +- __pkginfo__.py | 2 +- consolekit/__init__.py | 4 ++-- doc-source/index.rst | 2 +- repo_helper.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 466c590..d7e6957 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True diff --git a/README.rst b/README.rst index e1132ef..664c165 100644 --- a/README.rst +++ b/README.rst @@ -92,7 +92,7 @@ Spun out from `repo_helper `_. Needs .. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/consolekit :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v0.3.0 +.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v0.3.1 :target: https://github.com/domdfcoding/consolekit/pulse :alt: GitHub commits since tagged version diff --git a/__pkginfo__.py b/__pkginfo__.py index 7398ead..c76695d 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -26,7 +26,7 @@ 2020 Dominic Davis-Foster """ -__version__ = "0.3.0" +__version__ = "0.3.1" repo_root = pathlib.Path(__file__).parent install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n') diff --git a/consolekit/__init__.py b/consolekit/__init__.py index c4cb8a8..8022dc1 100644 --- a/consolekit/__init__.py +++ b/consolekit/__init__.py @@ -42,7 +42,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2020 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.3.0" +__version__: str = "0.3.1" __email__: str = "dominic@davis-foster.co.uk" if not bool(getattr(sys, "ps1", sys.flags.interactive)): # pragma: no cover @@ -70,7 +70,7 @@ class SuggestionGroup(click.Group): """ Subclass of :class:`click.Group` which suggests the most similar command if the command is not found. - .. versionadded 0.3.0 + .. versionadded 0.3.1 """ def resolve_command(self, ctx, args): # noqa: D102 diff --git a/doc-source/index.rst b/doc-source/index.rst index 9fde426..a3908c1 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -93,7 +93,7 @@ consolekit :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.3.0 + :commits-since: v0.3.1 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/repo_helper.yml b/repo_helper.yml index b3fa6c1..900cf21 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -5,7 +5,7 @@ copyright_years: '2020' author: 'Dominic Davis-Foster' email: 'dominic@davis-foster.co.uk' username: 'domdfcoding' -version: '0.3.0' +version: '0.3.1' license: 'MIT' short_desc: 'Additional utilities for click.'