Advance to version 0.1.2

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 16:39:20 +08:00
parent 3a78fbd587
commit a8005babec
2 changed files with 11 additions and 1 deletions

View File

@@ -2,6 +2,16 @@ Change Log
==========
Version 0.1.2
-------------
Released 2026/3/11
- Fix non-deterministic SPQR decomposition caused by Python hash
seed randomization. ``PathSearcher`` now uses a deterministic
DFS start vertex instead of picking from a ``set``.
Version 0.1.1
-------------

View File

@@ -43,7 +43,7 @@ from spqrtree._triconnected import (
find_triconnected_components,
)
VERSION: str = "0.1.1"
VERSION: str = "0.1.2"
"""The package version."""
__all__: list[str] = [
"SPQRTree", "SPQRNode", "NodeType",