Skip to content

Commit a090064

Browse files
committed
Bump version v0.2.3 -> v0.3.0
1 parent 52c8664 commit a090064

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
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.2.3
2+
current_version = 0.3.0
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 sphinx-autofixture=0.2.3=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld sphinx-autofixture=0.3.0=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
@@ -106,7 +106,7 @@ and `the documentation for coincidence`_ for an example with the ReadTheDocs the
106106
.. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/sphinx-autofixture
107107
:alt: GitHub top language
108108

109-
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-autofixture/v0.2.3
109+
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-autofixture/v0.3.0
110110
:target: https://github.com/sphinx-toolbox/sphinx-autofixture/pulse
111111
:alt: GitHub commits since tagged version
112112

doc-source/index.rst

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

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

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

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "sphinx-autofixture"
7-
version = "0.2.3"
7+
version = "0.3.0"
88
description = "Sphinx autodocumenter for pytest fixtures."
99
readme = "README.rst"
1010
keywords = [ "documentation", "pytest", "sphinx", "sphinx-extension",]
@@ -137,6 +137,9 @@ show_error_codes = true
137137
[tool.snippet-fmt]
138138
directives = [ "code-block",]
139139

140+
[tool.dep_checker]
141+
allowed_unused = [ "sphinx_jinja2_compat",]
142+
140143
[tool.dependency-dash."requirements.txt"]
141144
order = 10
142145

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: "sphinx-toolbox"
88
assignee: "domdfcoding"
99
primary_conda_channel: 'domdfcoding'
10-
version: '0.2.3'
10+
version: '0.3.0'
1111
license: 'MIT'
1212
short_desc: 'Sphinx autodocumenter for pytest fixtures.'
1313

sphinx_autofixture/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
__author__: str = "Dominic Davis-Foster"
4646
__copyright__: str = "2020 Dominic Davis-Foster"
4747
__license__: str = "MIT License"
48-
__version__: str = "0.2.3"
48+
__version__: str = "0.3.0"
4949
__email__: str = "dominic@davis-foster.co.uk"
5050

5151
__all__ = ["FixtureDecoratorFinder", "FixtureDocumenter", "is_fixture", "setup"]

0 commit comments

Comments
 (0)