Skip to content

Commit 3bfeb35

Browse files
committed
chore: fix __version__ runtime lie (2.0.0 -> 2.3.0)
Module-level __version__ declared 2.0.0 while pyproject.toml has shipped 2.3.0 for months. Any integrator running import agent_passport; agent_passport.__version__ got the wrong number. Audit catch from 568ce4e flagged but deferred. One-line correction; not 6b territory.
1 parent 568ce4e commit 3bfeb35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agent_passport/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
Docs: https://aeoess.com/llms-full.txt
2929
"""
3030

31-
__version__ = "2.0.0"
31+
__version__ = "2.3.0"
3232

3333
# Crypto
3434
from .crypto import generate_key_pair, sign, verify, public_key_from_private

0 commit comments

Comments
 (0)