From 2f1c0e14b791daa8d0dcf0283a7e327532dbd44f Mon Sep 17 00:00:00 2001 From: NiveditJain Date: Fri, 31 Jul 2026 19:53:47 +0530 Subject: [PATCH] chore: cut 1.0.0-beta.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version only, on a `luv-cut-*` branch, with Cargo.toml and Cargo.lock moving together — the release build runs `cargo build --locked`, which hard-errors when the lockfile records a different workspace version. Ships the config-flow fix (sudo prompted in-process at step 0, and the wizard refusing to run under sudo at all) plus three review findings in the system-service install: a symlink-able staging path for the privileged write, an unquoted FAILPROOFAI_WORKER_CMD that broke on any path with a space, and a launchd label that was not per-user. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01EbXKFnpRXBwsrvUJDdySky --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f8e32bf..78f97072 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "failproofaid" -version = "1.0.0-beta.0" +version = "1.0.0-beta.2" dependencies = [ "fpai-ipc", "libc", @@ -69,7 +69,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fpai-ipc" -version = "1.0.0-beta.0" +version = "1.0.0-beta.2" dependencies = [ "libc", "proptest", diff --git a/Cargo.toml b/Cargo.toml index 21f7b483..a3ca59f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "3" members = ["crates/*"] [workspace.package] -version = "1.0.0-beta.0" +version = "1.0.0-beta.2" edition = "2024" license-file = "LICENSE" repository = "https://github.com/FailproofAI/failproofai" diff --git a/package.json b/package.json index 5d7b5950..8a9c1f2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "failproofai", - "version": "1.0.0-beta.0", + "version": "1.0.0-beta.2", "description": "The easiest way to manage policies that keep your AI agents reliable, on-task, and running autonomously — for Claude Code & the Agents SDK", "bin": { "failproofai": "./dist/cli.mjs",