Skip to content

Commit ca40301

Browse files
committed
Bump version v0.0.18 -> v0.0.20
1 parent 194aaaf commit ca40301

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 = 0.0.18
2+
current_version = 0.0.20
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.18=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.20=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.18
122+
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.20
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.18
138+
:commits-since: v0.0.20
139139
:alt: GitHub commits since tagged version
140140

141141
.. |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 = "setuptools.build_meta"
44

55
[project]
66
name = "whey"
7-
version = "0.0.18"
7+
version = "0.0.20"
88
description = "A simple Python wheel builder for simple projects."
99
readme = "README.rst"
10-
keywords = [ "build", "distribution", "packaging", "pep517", "pep621", "sdist", "wheel",]
11-
dynamic = []
1210
requires-python = ">=3.6.1"
11+
keywords = [ "build", "distribution", "packaging", "pep517", "pep621", "sdist", "wheel",]
1312
classifiers = [
1413
"Development Status :: 3 - Alpha",
1514
"Environment :: Console",
@@ -30,6 +29,7 @@ classifiers = [
3029
"Topic :: System :: Archiving :: Packaging",
3130
"Typing :: Typed",
3231
]
32+
dynamic = []
3333

3434
[[project.authors]]
3535
name = "Dominic Davis-Foster"

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.18'
10+
version: '0.0.20'
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.18
11+
version = 0.0.20
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.18"
32+
__version__: str = "0.0.20"
3333
__email__: str = "dominic@davis-foster.co.uk"
3434

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

0 commit comments

Comments
 (0)