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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to the `pisama` meta-package are documented here. The packag

## [Unreleased]

## [0.5.5] - 2026-07-25

### Changed

- Publish releases through an isolated, tag-verified trusted-publishing
workflow with complete package tests before the PyPI job can start.

## [0.5.4] - 2026-07-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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.5.4"
version = "0.5.5"
description = "Multi-agent failure detection for production AI systems"
readme = "README.md"
license = "MIT"
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.5.4"
__version__ = "0.5.5"

from pisama._analyze import AnalyzeResult, Issue, analyze, async_analyze
from pisama._http import PisamaAuthError
Expand Down
Loading