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

Lines changed: 1 addition & 3 deletions
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

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 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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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]

0 commit comments

Comments
 (0)