Skip to content

Commit 251ced6

Browse files
committed
Bump version v2021.8.11 -> v2022.4.4
1 parent c327ca0 commit 251ced6

File tree

14 files changed

+17
-19
lines changed

14 files changed

+17
-19
lines changed

.bumpversion.cfg

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2021.8.11
2+
current_version = 2022.4.4
33
commit = True
44
tag = True
55

@@ -15,8 +15,6 @@ replace = : str = "{new_version}"
1515

1616
[bumpversion:file:tests/test_cli/test_builder_/test_write_wheel]
1717

18-
[bumpversion:file:tests/test_cli/test_builder_/test_write_wheel.yml]
19-
2018
[bumpversion:file:pyproject.toml]
2119
search = version = "{current_version}"
2220
replace = version = "{new_version}"

.github/workflows/conda_ci.yml

+1-1
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 repo_helper=2021.8.11=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld repo_helper=2022.4.4=py_1 -y || exit 1
5959
6060
- name: "Run Tests"
6161
run: |

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Note: The autocommit functionality is currently broken on Windows, but works OK
104104
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/repo_helper
105105
:alt: GitHub top language
106106

107-
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/repo_helper/v2021.8.11
107+
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/repo_helper/v2022.4.4
108108
:target: https://github.com/repo-helper/repo_helper/pulse
109109
:alt: GitHub commits since tagged version
110110

doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ This project is in an early stage, and some things might not work correctly or b
111111
:alt: GitHub top language
112112

113113
.. |commits-since| github-shield::
114-
:commits-since: v2021.8.11
114+
:commits-since: v2022.4.4
115115
:alt: GitHub commits since tagged version
116116

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

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "repo_helper"
7-
version = "2021.8.11"
7+
version = "2022.4.4"
88
description = "A tool to manage configuration files, build scripts etc. across multiple projects."
99
readme = "README.rst"
1010
keywords = [ "configuration",]

repo_helper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ modname: repo_helper
44
copyright_years: "2020-2021"
55
author: "Dominic Davis-Foster"
66
7-
version: "2021.8.11"
7+
version: "2022.4.4"
88
username: "repo-helper"
99
assignee: "domdfcoding"
1010
primary_conda_channel: "domdfcoding"

repo_helper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
__author__: str = "Dominic Davis-Foster"
2727
__copyright__: str = "2020 Dominic Davis-Foster"
2828
__license__: str = "LGPLv3+"
29-
__version__: str = "2021.8.11"
29+
__version__: str = "2022.4.4"
3030
__email__: str = "[email protected]"

repo_helper/configuration/packaging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ class use_flit(ConfigVar): # noqa
306306
Whether to use `flit <https://flit.readthedocs.io/en/latest/>`_ to build distributions,
307307
rather than ``setuptools.build_meta``.
308308
309-
.. versionadded:: $VERSION
309+
.. versionadded:: 2022.4.4
310310
311311
.. note:: Support for flit is provisional and experimental.
312312
""" # noqa: D400

repo_helper/configuration/python_versions_.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class python_versions(ConfigVar): # noqa
118118
119119
PyPy 3.7 and prerelease versions of CPython are treated as experimental by default unless overridden.
120120
121-
.. versionchanged:: $VERSION Added support for mappings as well as lists.
121+
.. versionchanged:: 2022.4.4 Added support for mappings as well as lists.
122122
"""
123123

124124
# dtype = Union[List[Union[str, float]], Dict[str, Dict[str, Any]]]

repo_helper/configuration/testing.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class extra_lint_paths(ConfigVar): # noqa
182182
- utils
183183
- demo.py
184184
185-
.. versionadded:: $VERSION
185+
.. versionadded:: 2022.4.4
186186
"""
187187

188188
dtype = List[str]
@@ -199,7 +199,7 @@ class extra_testenv_commands(ConfigVar): # noqa
199199
extra_testenv_commands:
200200
- python coverage-fixup.py
201201
202-
.. versionadded:: $VERSION
202+
.. versionadded:: 2022.4.4
203203
"""
204204

205205
dtype = List[str]
@@ -237,7 +237,7 @@ class mypy_version(ConfigVar): # noqa
237237
238238
.. versionchanged:: 2021.2.18 The default is now ``0.800``
239239
.. versionchanged:: 2021.8.11 The default is now ``0.910``
240-
.. versionchanged:: $VERSION The default is now ``0.931``
240+
.. versionchanged:: 2022.4.4 The default is now ``0.931``
241241
"""
242242

243243
dtype = Union[str, float]

repo_helper/files/ci_cd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def get_gh_actions_matrix(self) -> Dict[str, Tuple[str, bool]]:
179179
"""
180180
Determines the matrix of Python versions used in GitHub Actions.
181181
182-
.. versionadded:: $VERSION
182+
.. versionadded:: 2022.4.4
183183
"""
184184

185185
config = self.templates.globals

repo_helper/files/old.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def remove_artefact_cleaner(repo_path: pathlib.Path, templates: Environment) ->
171171
:param templates:
172172
173173
.. versionadded:: 2020.11.23
174-
.. versionremoved:: $VERSION
174+
.. versionremoved:: 2022.4.4
175175
""" # noqa: D400
176176

177177
dot_github = PathPlus(repo_path / ".github")

repo_helper/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ def resource(
502502
"""
503503
Retrieve the path to a resource inside a package.
504504
505-
.. versionadded:: $VERSION
505+
.. versionadded:: 2022.4.4
506506
507507
:param package: The name of the package, or a module object representing it.
508508
:param resource: The name of the resource.
@@ -548,7 +548,7 @@ def get_license_text(
548548
"""
549549
Obtain the license text for the given license.
550550
551-
.. versionadded:: $VERSION
551+
.. versionadded:: 2022.4.4
552552
553553
:param license_name: The name of the license.
554554
:param copyright_years: The copyright years (e.g. ``'2019-2021'``) to display in the license.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Wheel-Version: 1.0
2-
Generator: repo_helper.build (2021.8.11)
2+
Generator: repo_helper.build (2022.4.4)
33
Root-Is-Purelib: true
44
Tag: py3-none-any

0 commit comments

Comments
 (0)