Skip to content

Commit 4f72c4f

Browse files
committed
Bump version: 0.1.19 → 0.1.20
1 parent dda1c54 commit 4f72c4f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.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.1.19
2+
current_version = 0.1.20
33

44
[bumpversion:file:pyproject.toml]
55
search = version = "{current_version}"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "impactguard"
7-
version = "0.1.19"
7+
version = "0.1.20"
88
description = "Lightweight API impact analyzer for Python projects"
99
readme = "README.md"
1010
requires-python = ">=3.13"

src/impactguard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def analyze_impact(
169169
return analyze(sigs_path, calls_path, runtime_path)
170170

171171

172-
__version__ = "0.1.19"
172+
__version__ = "0.1.20"
173173

174174
__all__ = [
175175
# Signature extraction

tests/test_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_import():
1010
"""Test that impactguard can be imported."""
1111
import impactguard
1212

13-
assert impactguard.__version__ == "0.1.19"
13+
assert impactguard.__version__ == "0.1.20"
1414

1515

1616
def test_extract():

0 commit comments

Comments
 (0)