Skip to content

Commit b717374

Browse files
committed
Bump version: 0.0.0 → 0.0.1
1 parent 7b9ad93 commit b717374

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-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.0.0
2+
current_version = 0.0.1
33
commit = True
44
tag = True
55

README.rst

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

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

__pkginfo__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
2020 Dominic Davis-Foster <[email protected]>
4444
"""
4545

46-
__version__ = "0.0.0"
46+
__version__ = "0.0.1"
4747

4848
modname = "coverage_pyver_pragma"
4949
pypi_name = "coverage_pyver_pragma"
@@ -70,7 +70,7 @@
7070
repo_root = pathlib.Path(__file__).parent
7171

7272
# Get info from files; set: long_description
73-
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.0.0", __version__) + '\n'
73+
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.0.1", __version__) + '\n'
7474
conda_description = """Plugin for Coverage.py to selectively ignore branches depending on the Python version.
7575
7676

coverage_pyver_pragma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
__copyright__: str = "2020 Dominic Davis-Foster"
4343

4444
__license__: str = "LGPLV3+"
45-
__version__: str = "0.0.0"
45+
__version__: str = "0.0.1"
4646
__email__: str = "[email protected]"
4747

4848
regex_main: str = re.compile(r"#\s*(pragma|PRAGMA)[:\s]?\s*(no|NO)\s*(cover|COVER)").pattern

doc-source/index.rst

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

93-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/coverage_pyver_pragma/v0.0.0
93+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/coverage_pyver_pragma/v0.0.1
9494
:target: https://github.com/domdfcoding/coverage_pyver_pragma/pulse
9595
:alt: GitHub commits since tagged version
9696

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repo_name: coverage_pyver_pragma
33
copyright_years: "2020"
44
author: "Dominic Davis-Foster"
55
6-
version: "0.0.0"
6+
version: "0.0.1"
77
username: "domdfcoding"
88
license: 'LGPLv3+'
99
short_desc: "Plugin for Coverage.py to selectively ignore branches depending on the Python version."

0 commit comments

Comments
 (0)