From ced3a11d79fbaf30508b2b6c9ac41cc1ab49a321 Mon Sep 17 00:00:00 2001 From: Hemanth Chittanuru Date: Mon, 17 Aug 2026 12:41:57 -0400 Subject: [PATCH] chore: bump version to 0.1.1 Co-Authored-By: Claude Opus 5 --- postflight/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postflight/__init__.py b/postflight/__init__.py index 6905787..c32c133 100644 --- a/postflight/__init__.py +++ b/postflight/__init__.py @@ -25,7 +25,7 @@ ) from .model import Finding, Generation, Outcome, Severity, Step, ToolCall, Turn -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = [ "DETECTORS", diff --git a/pyproject.toml b/pyproject.toml index 9b9bfc2..104af53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "postflight" -version = "0.1.0" +version = "0.1.1" description = "Turn-level failure detection for tool-calling agents" readme = "README.md" requires-python = ">=3.11"