Skip to content

Commit 8b76d95

Browse files
committed
Bump version v0.2.2 -> v0.2.3
1 parent e724dbc commit 8b76d95

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.2
2+
current_version = 0.2.3
33
commit = True
44
tag = True
55

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ coverage_pyver_pragma
101101
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/coverage_pyver_pragma
102102
:alt: GitHub top language
103103

104-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/coverage_pyver_pragma/v0.2.2
104+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/coverage_pyver_pragma/v0.2.3
105105
:target: https://github.com/domdfcoding/coverage_pyver_pragma/pulse
106106
:alt: GitHub commits since tagged version
107107

__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2020-2021 Dominic Davis-Foster <[email protected]>
2727
"""
2828

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

coverage_pyver_pragma/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
__author__: str = "Dominic Davis-Foster"
4343
__copyright__: str = "2020-2021 Dominic Davis-Foster"
4444
__license__: str = "MIT License"
45-
__version__: str = "0.2.2"
45+
__version__: str = "0.2.3"
4646
__email__: str = "[email protected]"
4747

4848
__all__ = ["DSL_EXCLUDE", "evaluate_exclude"]
@@ -53,15 +53,15 @@
5353
where ``XXX`` is an expression to be evaluated to determine whether the line
5454
should be excluded from coverage.
5555
56-
.. versionadded:: 0.2.2
56+
.. versionadded:: 0.2.3
5757
"""
5858

5959

6060
def evaluate_exclude(expression: str) -> bool:
6161
"""
6262
Evaluate the given expression to determine whether the line should be excluded from coverage.
6363
64-
.. versionadded:: 0.2.2
64+
.. versionadded:: 0.2.3
6565
6666
|
6767

doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ coverage_pyver_pragma
103103
:alt: GitHub top language
104104

105105
.. |commits-since| github-shield::
106-
:commits-since: v0.2.2
106+
:commits-since: v0.2.3
107107
:alt: GitHub commits since tagged version
108108

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

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "coverage_pyver_pragma"
7-
version = "0.2.2"
7+
version = "0.2.3"
88
description = "Plugin for Coverage.py to selectively ignore branches depending on the Python version."
99
readme = "README.rst"
1010
keywords = []

repo_helper.yml

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

0 commit comments

Comments
 (0)