Skip to content

Commit fa7af2c

Browse files
committed
Release python-introspect 0.1.5
1 parent 8e863ad commit fa7af2c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

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

55
[project]
66
name = "python-introspect"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Pure Python introspection toolkit for function signatures, dataclasses, and type hints"
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/python_introspect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
type resolution for framework-specific types (lazy configs, proxies, etc.)
1010
"""
1111

12-
__version__ = "0.1.4"
12+
__version__ = "0.1.5"
1313

1414
from .signature_analyzer import (
1515
SignatureAnalyzer,

tests/test_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_version_available(self):
1111
"""Test that __version__ is available."""
1212
assert hasattr(python_introspect, "__version__")
1313
assert isinstance(python_introspect.__version__, str)
14-
assert python_introspect.__version__ == "0.1.4"
14+
assert python_introspect.__version__ == "0.1.5"
1515

1616
def test_signature_analyzer_import(self):
1717
"""Test SignatureAnalyzer is importable."""

0 commit comments

Comments
 (0)