Skip to content

Commit ceeaccf

Browse files
committed
Bump version v0.0.22 -> v0.0.23
1 parent d321e6f commit ceeaccf

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
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 = 0.0.22
2+
current_version = 0.0.23
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
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: "Install package"
5757
run: |
58-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.22=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.23=py_1 -y || exit 1
5959
6060
- name: "Run Tests"
6161
run: |

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ See `the documentation`_ for configuration_ and usage_ information.
119119
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/whey
120120
:alt: GitHub top language
121121

122-
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.22
122+
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.23
123123
:target: https://github.com/repo-helper/whey/pulse
124124
:alt: GitHub commits since tagged version
125125

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ whey
135135
:alt: GitHub top language
136136

137137
.. |commits-since| github-shield::
138-
:commits-since: v0.0.22
138+
:commits-since: v0.0.23
139139
:alt: GitHub commits since tagged version
140140

141141
.. |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 = "whey"
7-
version = "0.0.22"
7+
version = "0.0.23"
88
description = "A simple Python wheel builder for simple projects."
99
readme = "README.rst"
1010
requires-python = ">=3.6.1"

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ email: 'dominic@davis-foster.co.uk'
77
username: 'repo-helper'
88
assignee: 'domdfcoding'
99
primary_conda_channel: "domdfcoding"
10-
version: '0.0.22'
10+
version: '0.0.23'
1111
license: 'MIT'
1212
short_desc: 'A simple Python wheel builder for simple projects.'
1313

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 = whey
11-
version = 0.0.22
11+
version = 0.0.23
1212
author = Dominic Davis-Foster
1313
author_email = dominic@davis-foster.co.uk
1414
license = MIT License

whey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
__author__: str = "Dominic Davis-Foster"
3333
__copyright__: str = "2021 Dominic Davis-Foster"
3434
__license__: str = "MIT License"
35-
__version__: str = "0.0.22"
35+
__version__: str = "0.0.23"
3636
__email__: str = "dominic@davis-foster.co.uk"
3737

3838
__all__ = ["build_sdist", "build_wheel"]

whey/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class WheyTracebackHandler(ConfigTracebackHandler):
5151

5252

5353
class WheyBackendTBHandler(WheyTracebackHandler):
54+
5455
def __init__(self, exception: BaseException = SystemExit(1)):
5556
super().__init__(exception)
5657

0 commit comments

Comments
 (0)