Skip to content

Commit 6a83c18

Browse files
committed
Bump version v1.1.2 -> v1.2.0
1 parent e3bbeb2 commit 6a83c18

File tree

9 files changed

+13
-12
lines changed

9 files changed

+13
-12
lines changed

.bumpversion.cfg

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

@@ -16,9 +16,10 @@ search = : str = "{current_version}"
1616
replace = : str = "{new_version}"
1717

1818
[bumpversion:file:consolekit/utils.py]
19+
search = current_version="{current_version}"
20+
replace = current_version="{new_version}"
1921

2022
[bumpversion:file:pyproject.toml]
21-
2223
search = version = "{current_version}"
2324
replace = version = "{new_version}"
2425

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.2
103+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v1.2.0
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
@@ -16,7 +16,7 @@
1616
"extras_require",
1717
]
1818

19-
__version__ = "1.1.2"
19+
__version__ = "1.2.0"
2020
extras_require = {
2121
"terminals": ["psutil>=5.8.0"],
2222
"testing": ["coincidence>=0.1.0", "pytest>=6.0.0", "pytest-regressions>=2.0.2"],

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.2"
56+
__version__: str = "1.2.0"
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
@@ -79,7 +79,7 @@
7979
_deprecator = deprecation_alias.deprecated(
8080
deprecated_in="1.0.0",
8181
removed_in="2.0.0",
82-
current_version="1.1.2",
82+
current_version="1.2.0",
8383
details="Import from consolekit.tracebacks instead."
8484
)
8585

@@ -135,7 +135,7 @@ def abort(message: str, colour: ColourTrilean = None) -> Exception:
135135
:param colour: Whether to use coloured output. Default auto-detect.
136136
:no-default colour:
137137
138-
.. versionchanged:: 1.1.2 Added the ``colour`` option.
138+
.. versionchanged:: 1.0.1 Added the ``colour`` option.
139139
"""
140140

141141
click.echo(terminal_colours.Fore.RED(message), err=True, color=resolve_color_default(colour))
@@ -269,7 +269,7 @@ def coloured_diff(
269269
"""
270270
:func:`itertools.cycle` of braille characters to use as a loading spinner which looks like a snake.
271271
272-
.. versionadded:: 1.1.2
272+
.. versionadded:: 1.1.0
273273
"""
274274

275275

doc-source/index.rst

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

108108
.. |commits-since| github-shield::
109-
:commits-since: v1.1.2
109+
:commits-since: v1.2.0
110110
:alt: GitHub commits since tagged version
111111

112112
.. |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.2"
7+
version = "1.2.0"
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.2'
8+
version: '1.2.0'
99
license: 'MIT'
1010
short_desc: 'Additional utilities for click.'
1111

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[metadata]
1010
name = consolekit
11-
version = 1.1.2
11+
version = 1.2.0
1212
author = Dominic Davis-Foster
1313
author_email = [email protected]
1414
license = MIT License

0 commit comments

Comments
 (0)