diff --git a/CHANGELOG.md b/CHANGELOG.md index cb2c830..3a3c3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to the `pisama` meta-package are documented here. The packag ## [Unreleased] +## [0.6.3] - 2026-09-08 + +### Fixed + +- Replace the retired documentation hostname in package metadata with the + canonical public README. +- Explain hosted invitation onboarding separately from offline SDK usage, + including token exchange, OTLP ingestion and diagnosis boundaries. +- Keep SDK instrumentation tests compatible with both older Anthropic clients + and the 1.4 argument shape. Runtime instrumentation behavior is unchanged. + ## [0.6.2] - 2026-07-30 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 0722d62..4f1b427 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pisama" -version = "0.6.2" +version = "0.6.3" description = "Multi-agent failure detection for production AI systems" readme = "README.md" license = "MIT" @@ -97,7 +97,7 @@ pisama-openhands-monitor = "pisama.agents.cli.openhands_monitor:main" [project.urls] Homepage = "https://pisama.ai" -Documentation = "https://docs.pisama.ai" +Documentation = "https://github.com/Pisama-AI/pisama-python#readme" Repository = "https://github.com/Pisama-AI/pisama-python" Issues = "https://github.com/Pisama-AI/pisama-python/issues" Changelog = "https://github.com/Pisama-AI/pisama-python/blob/main/CHANGELOG.md" diff --git a/src/pisama/__init__.py b/src/pisama/__init__.py index 0ff22f0..3c2b77d 100644 --- a/src/pisama/__init__.py +++ b/src/pisama/__init__.py @@ -14,7 +14,7 @@ __version__ = _pkg_version("pisama") except PackageNotFoundError: # running from a source checkout without an install - __version__ = "0.6.2" + __version__ = "0.6.3" from pisama._analyze import AnalyzeResult, Issue, analyze, async_analyze from pisama._http import PisamaAuthError