Skip to content

Commit cbae426

Browse files
committed
Bump version v1.3.0 -> v1.3.1
1 parent 660dd89 commit cbae426

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.3.0
2+
current_version = 1.3.1
33
commit = True
44
tag = True
55

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: "Install package"
5050
run: |
51-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld consolekit=1.3.0=py_1 -y || exit 1
51+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld consolekit=1.3.1=py_1 -y || exit 1
5252
5353
- name: "Run Tests"
5454
run: |

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.3.0
103+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/consolekit/v1.3.1
104104
:target: https://github.com/domdfcoding/consolekit/pulse
105105
:alt: GitHub commits since tagged version
106106

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.3.0"
56+
__version__: str = "1.3.1"
5757
__email__: str = "[email protected]"
5858

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

consolekit/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
_deprecator = deprecation_alias.deprecated(
7979
deprecated_in="1.0.0",
8080
removed_in="2.0.0",
81-
current_version="1.3.0",
81+
current_version="1.3.1",
8282
details="Import from consolekit.tracebacks instead."
8383
)
8484

doc-source/index.rst

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

109109
.. |commits-since| github-shield::
110-
:commits-since: v1.3.0
110+
:commits-since: v1.3.1
111111
:alt: GitHub commits since tagged version
112112

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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "consolekit"
7-
version = "1.3.0"
7+
version = "1.3.1"
88
description = "Additional utilities for click."
99
readme = "README.rst"
10-
keywords = [ "click", "terminal",]
11-
dynamic = []
1210
requires-python = ">=3.6.1"
11+
keywords = [ "click", "terminal",]
1312
classifiers = [
1413
"Development Status :: 5 - Production/Stable",
1514
"Environment :: Console",
@@ -36,6 +35,7 @@ dependencies = [
3635
"mistletoe>=0.7.2",
3736
"typing-extensions>=3.7.4.3",
3837
]
38+
dynamic = []
3939

4040
[[project.authors]]
4141
name = "Dominic Davis-Foster"

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.3.0'
8+
version: '1.3.1'
99
license: 'MIT'
1010
short_desc: 'Additional utilities for click.'
1111

0 commit comments

Comments
 (0)