Skip to content

Commit 0bb88b9

Browse files
committed
Bump version v1.1.1 -> v1.1.2
1 parent 7fae775 commit 0bb88b9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.1
2+
current_version = 1.1.2
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ consolekit
100100
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/consolekit
101101
:alt: GitHub top language
102102

103-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v1.1.1
103+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v1.1.2
104104
:target: https://github.com/domdfcoding/consolekit/pulse
105105
:alt: GitHub commits since tagged version
106106

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2020-2021 Dominic Davis-Foster <[email protected]>
2727
"""
2828

29-
__version__ = "1.1.1"
29+
__version__ = "1.1.2"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {

consolekit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
__author__: str = "Dominic Davis-Foster"
5454
__copyright__: str = "2020 Dominic Davis-Foster"
5555
__license__: str = "MIT License"
56-
__version__: str = "1.1.1"
56+
__version__: str = "1.1.2"
5757
__email__: str = "[email protected]"
5858

5959
if not bool(getattr(sys, "ps1", sys.flags.interactive)): # pragma: no cover

consolekit/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
_deprecator = deprecation_alias.deprecated(
7878
deprecated_in="1.0.0",
7979
removed_in="2.0.0",
80-
current_version="1.1.1",
80+
current_version="1.1.2",
8181
details="Import from consolekit.tracebacks instead."
8282
)
8383

@@ -133,7 +133,7 @@ def abort(message: str, colour: bool = None) -> Exception:
133133
:param colour: Whether to use coloured output. Default auto-detect.
134134
:no-default colour:
135135
136-
.. versionchanged:: 1.1.1 Added the ``colour`` option.
136+
.. versionchanged:: 1.1.2 Added the ``colour`` option.
137137
"""
138138

139139
click.echo(terminal_colours.Fore.RED(message), err=True, color=resolve_color_default(colour))
@@ -265,7 +265,7 @@ def coloured_diff(
265265
"""
266266
:func:`itertools.cycle` of braille characters to use as a loading spinner which looks like a snake.
267267
268-
.. versionadded:: 1.1.1
268+
.. versionadded:: 1.1.2
269269
"""
270270

271271

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ consolekit
105105
:alt: GitHub top language
106106

107107
.. |commits-since| github-shield::
108-
:commits-since: v1.1.1
108+
:commits-since: v1.1.2
109109
:alt: GitHub commits since tagged version
110110

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "consolekit"
7-
version = "1.1.1"
7+
version = "1.1.2"
88
description = "Additional utilities for click."
99
readme = "README.rst"
1010
keywords = [ "click", "terminal",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: '2020-2021'
55
author: 'Dominic Davis-Foster'
66
77
username: 'domdfcoding'
8-
version: '1.1.1'
8+
version: '1.1.2'
99
license: 'MIT'
1010
short_desc: 'Additional utilities for click.'
1111

0 commit comments

Comments
 (0)