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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All notable changes to Cairn are recorded here. Format follows
Per the [documentation policy](docs/governance/documentation-policy.md), every meaningful change
updates this file.

## [Unreleased] — Milestone M4: BYOM recovery library (in-repo, 0.x — ships nothing outward)
## [0.3.0] — 2026-07-02 — Milestone M4: BYOM recovery library (in-repo, 0.x — ships nothing outward)

Cairn's recovery **mechanism**, repackaged as a **bring-your-own-model (BYOM) library**: a clean,
documented public API an outside developer drops into *their own* agent with *their own* model and
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "cairn"
version = "0.2.0"
description = "Recoverable long-horizon agents — reference harness + recovery-faithful live benchmark"
version = "0.3.0"
description = "Recoverable long-horizon agents — a bring-your-own-model recovery library, reference harness, and recovery-faithful benchmark"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
Expand Down
2 changes: 1 addition & 1 deletion src/cairn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
confirmed — see docs/research/claims-registry.md).
"""

__version__ = "0.2.0"
__version__ = "0.3.0"

from .contract import CheckpointStore, EffectLedger, World
from .harness.effects import EffectfulTool, EscalationRequired, Resolution
Expand Down
Loading