chore: bump version to 3.2.0 for release

Update version across pyproject.toml, _version.py fallbacks,
CHANGELOG.md, and README badges for v3.2.0 release.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-03-01 22:24:18 +03:00
parent a5ae905e63
commit a535c7cf18
5 changed files with 8 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ def get_version() -> str:
"""
if tomllib is None:
# Fallback if TOML library not available
return "3.1.3" # Hardcoded fallback
return "3.2.0" # Hardcoded fallback
try:
# Get path to pyproject.toml (3 levels up from this file)
@@ -37,7 +37,7 @@ def get_version() -> str:
if not pyproject_path.exists():
# Fallback for installed package
return "3.1.3" # Hardcoded fallback
return "3.2.0" # Hardcoded fallback
with open(pyproject_path, "rb") as f:
pyproject_data = tomllib.load(f)
@@ -46,7 +46,7 @@ def get_version() -> str:
except Exception:
# Fallback if anything goes wrong
return "3.1.3" # Hardcoded fallback
return "3.2.0" # Hardcoded fallback
__version__ = get_version()