Skip to content

Commit e38eb1f

Browse files
committed
Bump version v0.0.0 -> v0.1.0
1 parent af14fc7 commit e38eb1f

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 3 deletions
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

@@ -9,8 +9,6 @@ tag = True
99

1010
[bumpversion:file:README.rst]
1111

12-
[bumpversion:file:tox_envlist/__init__.py]
13-
1412
[bumpversion:file:tox_recreate_hook/__init__.py]
1513

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tox-recreate-hook
9191
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/tox-recreate-hook
9292
:alt: GitHub top language
9393

94-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/tox-recreate-hook/v0.0.0
94+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/tox-recreate-hook/v0.1.0
9595
:target: https://github.com/domdfcoding/tox-recreate-hook/pulse
9696
:alt: GitHub commits since tagged version
9797

__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 <dominic@davis-foster.co.uk>
2727
"""
2828

29-
__version__ = "0.0.0"
29+
__version__ = "0.1.0"
3030

3131
repo_root = pathlib.Path(__file__).parent
3232
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ tox-recreate-hook
9393
:alt: GitHub top language
9494

9595
.. |commits-since| github-shield::
96-
:commits-since: v0.0.0
96+
:commits-since: v0.1.0
9797
:alt: GitHub commits since tagged version
9898

9999
.. |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 = "tox-recreate-hook"
7-
version = "0.0.0"
7+
version = "0.1.0"
88
description = "(experimental) Allows hooks to be defined which are called when recreating a tox testenv."
99
readme = "README.rst"
1010
keywords = [ "tox",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: 2021
55
author: 'Dominic Davis-Foster'
66
email: 'dominic@davis-foster.co.uk'
77
username: 'domdfcoding'
8-
version: '0.0.0'
8+
version: '0.1.0'
99
license: 'MIT'
1010
short_desc: '(experimental) Allows hooks to be defined which are called when recreating a tox testenv.'
1111

tox_recreate_hook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
__author__: str = "Dominic Davis-Foster"
5252
__copyright__: str = "2021 Dominic Davis-Foster"
5353
__license__: str = "MIT License"
54-
__version__: str = "0.0.0"
54+
__version__: str = "0.1.0"
5555
__email__: str = "dominic@davis-foster.co.uk"
5656

5757
hookimpl = pluggy.HookimplMarker("tox")

0 commit comments

Comments
 (0)