Skip to content

Commit 746eca1

Browse files
committed
Bump version v0.0.16 -> v0.0.17
1 parent 36b69fd commit 746eca1

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
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.16
2+
current_version = 0.0.17
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 whey=0.0.16=py_1 -y || exit 1
51+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.17=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
@@ -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.16
122+
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.17
123123
:target: https://github.com/repo-helper/whey/pulse
124124
:alt: GitHub commits since tagged version
125125

__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__ = "0.0.16"
19+
__version__ = "0.0.17"
2020
extras_require = {
2121
"readme": ["docutils==0.16", "pyproject-parser[readme]>=0.3.0"],
2222
"all": ["docutils==0.16", "pyproject-parser[readme]>=0.3.0"]

doc-source/index.rst

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

136136
.. |commits-since| github-shield::
137-
:commits-since: v0.0.16
137+
:commits-since: v0.0.17
138138
:alt: GitHub commits since tagged version
139139

140140
.. |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.16"
7+
version = "0.0.17"
88
description = "A simple Python wheel builder for simple projects."
99
readme = "README.rst"
1010
keywords = [ "build", "distribution", "packaging", "pep517", "pep621", "sdist", "wheel",]

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.16'
10+
version: '0.0.17'
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.16
11+
version = 0.0.17
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
@@ -29,7 +29,7 @@
2929
__author__: str = "Dominic Davis-Foster"
3030
__copyright__: str = "2021 Dominic Davis-Foster"
3131
__license__: str = "MIT License"
32-
__version__: str = "0.0.16"
32+
__version__: str = "0.0.17"
3333
__email__: str = "dominic@davis-foster.co.uk"
3434

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

0 commit comments

Comments
 (0)