Skip to content

Commit 4d65b9f

Browse files
committed
Bump version v0.4.0 -> v0.4.1
1 parent b3b565d commit 4d65b9f

File tree

8 files changed

+9
-9
lines changed

8 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.4.0
2+
current_version = 0.4.1
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
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: "Install package"
5656
run: |
57-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld extras_require=0.4.0=py_1 -y || exit 1
57+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld extras_require=0.4.1=py_1 -y || exit 1
5858
5959
- name: "Run Tests"
6060
run: |

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ extras_require
100100
.. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/extras_require
101101
:alt: GitHub top language
102102

103-
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/extras_require/v0.4.0
103+
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/extras_require/v0.4.1
104104
:target: https://github.com/sphinx-toolbox/extras_require/pulse
105105
:alt: GitHub commits since tagged version
106106

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ extras_require
107107
:alt: GitHub top language
108108

109109
.. |commits-since| github-shield::
110-
:commits-since: v0.4.0
110+
:commits-since: v0.4.1
111111
:alt: GitHub commits since tagged version
112112

113113
.. |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 = "extras_require"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
description = "Display a warning at the top of module documentation that it has additional requirements."
99
readme = "README.rst"
1010
keywords = [ "documentation", "requirements", "sphinx", "sphinx-extension",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import_name: sphinxcontrib.extras_require
44
copyright_years: "2020"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.4.0"
7+
version: "0.4.1"
88
username: "sphinx-toolbox"
99
assignee: "domdfcoding"
1010
primary_conda_channel: "domdfcoding"

sphinxcontrib/extras_require/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
__author__: str = "Dominic Davis-Foster"
5151
__copyright__: str = "2020 Dominic Davis-Foster"
5252
__license__: str = "BSD"
53-
__version__: str = "0.4.0"
53+
__version__: str = "0.4.1"
5454
__email__: str = "dominic@davis-foster.co.uk"
5555

5656
__all__ = ["extras_require_purger", "setup"]

tests/test_from_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
[
1717
("faker\npytest\ntox", "extra_c", ["faker", "pytest", "tox"], nullcontext()),
1818
(
19-
"\n".join(["faker", "pytest", 'tox; python_version <= "3.6"']),
19+
'\n'.join(["faker", "pytest", 'tox; python_version <= "3.6"']),
2020
"extra_c",
2121
["faker", "pytest", 'tox; python_version <= "3.6"'],
2222
nullcontext(),
2323
),
2424
(
25-
"\n".join(["faker", "pytest", "tox; python<=3.6"]),
25+
'\n'.join(["faker", "pytest", "tox; python<=3.6"]),
2626
"extra_c",
2727
["faker", "pytest"],
2828
pytest.warns(UserWarning, match="Ignored invalid requirement 'tox; python<=3.6'"),

0 commit comments

Comments
 (0)