Skip to content

Commit ed08479

Browse files
committed
Bump version v0.2.1 -> v0.2.2
1 parent f275803 commit ed08479

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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.2.1
2+
current_version = 0.2.2
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
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.1
104+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/coverage_pyver_pragma/v0.2.2
105105
:target: https://github.com/domdfcoding/coverage_pyver_pragma/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
2020-2021 Dominic Davis-Foster <[email protected]>
2727
"""
2828

29-
__version__ = "0.2.1"
29+
__version__ = "0.2.2"
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

Lines changed: 3 additions & 3 deletions
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.1"
45+
__version__: str = "0.2.2"
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.1
56+
.. versionadded:: 0.2.2
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.1
64+
.. versionadded:: 0.2.2
6565
6666
|
6767

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
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.1
106+
:commits-since: v0.2.2
107107
:alt: GitHub commits since tagged version
108108

109109
.. |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 = "coverage_pyver_pragma"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "Plugin for Coverage.py to selectively ignore branches depending on the Python version."
99
readme = "README.rst"
1010
keywords = []

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-2021"
44
author: "Dominic Davis-Foster"
55
6-
version: "0.2.1"
6+
version: "0.2.2"
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)