Skip to content

Commit 7a56f03

Browse files
committed
Bump version v0.0.0 -> v0.1.0
1 parent 1e0ee3c commit 7a56f03

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.0
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55

@@ -13,6 +13,8 @@ tag = True
1313

1414
[bumpversion:file:doc-source/index.rst]
1515

16+
[bumpversion:file:tests/test_sphinx_pyproject_/test_parse_our_config.yml]
17+
1618
[bumpversion:file:sphinx_pyproject/__init__.py]
1719
search = : str = "{current_version}"
1820
replace = : str = "{new_version}"

README.rst

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

104-
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-pyproject/v0.0.0
104+
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-pyproject/v0.1.0
105105
:target: https://github.com/sphinx-toolbox/sphinx-pyproject/pulse
106106
:alt: GitHub commits since tagged version
107107

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2021 Dominic Davis-Foster <[email protected]>
2727
"""
2828

29-
__version__ = "0.0.0"
29+
__version__ = "0.1.0"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {}

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ sphinx-pyproject
105105
:alt: GitHub top language
106106

107107
.. |commits-since| github-shield::
108-
:commits-since: v0.0.0
108+
:commits-since: v0.1.0
109109
:alt: GitHub commits since tagged version
110110

111111
.. |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 = "sphinx-pyproject"
7-
version = "0.0.0"
7+
version = "0.1.0"
88
description = "Move some of your Sphinx configuration into pyproject.toml"
99
readme = "README.rst"
1010
keywords = [ "sphinx", "documentation", "pep621", "toml",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ email: '[email protected]'
77
username: 'sphinx-toolbox'
88
assignee: 'domdfcoding'
99
primary_conda_channel: 'domdfcoding'
10-
version: '0.0.0'
10+
version: '0.1.0'
1111
license: 'MIT'
1212
short_desc: 'Move some of your Sphinx configuration into pyproject.toml'
1313

sphinx_pyproject/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
__author__: str = "Dominic Davis-Foster"
4141
__copyright__: str = "2021 Dominic Davis-Foster"
4242
__license__: str = "MIT License"
43-
__version__: str = "0.0.0"
43+
__version__: str = "0.1.0"
4444
__email__: str = "[email protected]"
4545

4646
__all__ = ["SphinxConfig", "ProjectParser"]

tests/test_sphinx_pyproject_/test_parse_our_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ toctree_plus_types:
8484
- typeddict
8585
- namedtuple
8686
- exception
87-
version: 0.0.0
87+
version: 0.1.0

0 commit comments

Comments
 (0)