Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/pisama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading