Skip to content

Commit

Permalink
Bump version v0.4.0 -> v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Feb 2, 2022
1 parent b3b565d commit 4d65b9f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.4.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda_ci.yml
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: "Install package"
run: |
$CONDA/bin/conda install -c file://$(pwd)/conda-bld extras_require=0.4.0=py_1 -y || exit 1
$CONDA/bin/conda install -c file://$(pwd)/conda-bld extras_require=0.4.1=py_1 -y || exit 1
- name: "Run Tests"
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -100,7 +100,7 @@ extras_require
.. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/extras_require
:alt: GitHub top language

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

Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Expand Up @@ -107,7 +107,7 @@ extras_require
:alt: GitHub top language

.. |commits-since| github-shield::
:commits-since: v0.4.0
:commits-since: v0.4.1
:alt: GitHub commits since tagged version

.. |commits-latest| github-shield::
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "whey"

[project]
name = "extras_require"
version = "0.4.0"
version = "0.4.1"
description = "Display a warning at the top of module documentation that it has additional requirements."
readme = "README.rst"
keywords = [ "documentation", "requirements", "sphinx", "sphinx-extension",]
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Expand Up @@ -4,7 +4,7 @@ import_name: sphinxcontrib.extras_require
copyright_years: "2020"
author: "Dominic Davis-Foster"
email: "dominic@davis-foster.co.uk"
version: "0.4.0"
version: "0.4.1"
username: "sphinx-toolbox"
assignee: "domdfcoding"
primary_conda_channel: "domdfcoding"
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/extras_require/__init__.py
Expand Up @@ -50,7 +50,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2020 Dominic Davis-Foster"
__license__: str = "BSD"
__version__: str = "0.4.0"
__version__: str = "0.4.1"
__email__: str = "dominic@davis-foster.co.uk"

__all__ = ["extras_require_purger", "setup"]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_from_file.py
Expand Up @@ -16,13 +16,13 @@
[
("faker\npytest\ntox", "extra_c", ["faker", "pytest", "tox"], nullcontext()),
(
"\n".join(["faker", "pytest", 'tox; python_version <= "3.6"']),
'\n'.join(["faker", "pytest", 'tox; python_version <= "3.6"']),
"extra_c",
["faker", "pytest", 'tox; python_version <= "3.6"'],
nullcontext(),
),
(
"\n".join(["faker", "pytest", "tox; python<=3.6"]),
'\n'.join(["faker", "pytest", "tox; python<=3.6"]),
"extra_c",
["faker", "pytest"],
pytest.warns(UserWarning, match="Ignored invalid requirement 'tox; python<=3.6'"),
Expand Down

0 comments on commit 4d65b9f

Please sign in to comment.