Skip to content

Commit

Permalink
Bump version v0.5.3 -> v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Jul 26, 2023
1 parent 85afbda commit f9804aa
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.3
current_version = 0.6.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: "Install package"
run: |
$CONDA/bin/conda install -c file://$(pwd)/conda-bld default_values=0.5.3=py_1 -y || exit 1
$CONDA/bin/conda install -c file://$(pwd)/conda-bld default_values=0.6.0=py_1 -y || exit 1
- name: "Run Tests"
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ For more information see `the documentation <https://default-values.readthedocs.
.. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/default_values
:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/default_values/v0.5.3
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/default_values/v0.6.0
:target: https://github.com/sphinx-toolbox/default_values/pulse
:alt: GitHub commits since tagged version

Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ default_values
:alt: GitHub top language

.. |commits-since| github-shield::
:commits-since: v0.5.3
:commits-since: v0.6.0
:alt: GitHub commits since tagged version

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

[project]
name = "default_values"
version = "0.5.3"
version = "0.6.0"
description = "Sphinx extension to show default values in documentation."
readme = "README.rst"
keywords = [ "documentation", "sphinx",]
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ email: "dominic@davis-foster.co.uk"
username: 'sphinx-toolbox'
assignee: 'domdfcoding'
primary_conda_channel: 'domdfcoding'
version: "0.5.3"
version: "0.6.0"
license: "MIT"
short_desc: "Sphinx extension to show default values in documentation."

Expand Down
8 changes: 4 additions & 4 deletions sphinxcontrib/default_values/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2020 Dominic Davis-Foster"
__license__: str = "MIT"
__version__: str = "0.5.3"
__version__: str = "0.6.0"
__email__: str = "dominic@davis-foster.co.uk"

__all__ = [
Expand All @@ -74,14 +74,14 @@
"""
Regular expression to match default values declared in docstrings.
.. versionchanged:: 0.5.3 Change to be case insensitive.
.. versionchanged:: 0.6.0 Change to be case insensitive.
"""

no_default_regex: Pattern = re.compile("^:(?i:no[-_]default) ")
"""
Regular expression to match fields in docstrings to suppress default values.
.. versionchanged:: 0.5.3 Change to be case insensitive.
.. versionchanged:: 0.6.0 Change to be case insensitive.
"""

# ref: sphinx.domains.python.PyObject.doc_field_types
Expand Down Expand Up @@ -112,7 +112,7 @@ def format_default_value(value: Any) -> Optional[str]:
"""
Format the value as a string.
.. versionadded:: 0.5.3
.. versionadded:: 0.6.0
:param value:
"""
Expand Down

0 comments on commit f9804aa

Please sign in to comment.