Advance to version 0.1.1

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 12:27:31 +08:00
parent 8e81879654
commit 709ebc76d7
2 changed files with 13 additions and 1 deletions

View File

@@ -2,6 +2,18 @@ Change Log
========== ==========
Version 0.1.1
-------------
Released 2026/3/11
- ``find_triconnected_components()`` now raises ``ValueError`` when
the input graph is not biconnected (disconnected or has a cut
vertex). Previously, non-biconnected input was silently accepted
and produced incorrect results.
- Use public API imports in documentation examples.
Version 0.1.0 Version 0.1.0
------------- -------------

View File

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