From 29752c0d90de42b578f2148154a461054cb78b0c Mon Sep 17 00:00:00 2001 From: NiveditJain Date: Fri, 31 Jul 2026 19:21:22 +0530 Subject: [PATCH] chore: cut 1.0.0-beta.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version only, on a `luv-cut-*` branch because `block-version-bumps` reserves package.json's version for exactly that — and it denied the same edit on the feature branch, as designed. Cargo.toml and Cargo.lock move with it: the release build runs `cargo build --locked`, which hard-errors when the lockfile records a different workspace version than Cargo.toml, so bumping one without the other would fail every cross-compile leg. Ships the two fixes 1.0.0-beta.0 surfaced on real machines — static musl Linux binaries (no glibc floor) and a system-scope service that starts at boot and survives logout. 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..be8052e7 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.1" 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.1" dependencies = [ "libc", "proptest", diff --git a/Cargo.toml b/Cargo.toml index 21f7b483..a09a45ad 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.1" edition = "2024" license-file = "LICENSE" repository = "https://github.com/FailproofAI/failproofai" diff --git a/package.json b/package.json index 5d7b5950..ce4193ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "failproofai", - "version": "1.0.0-beta.0", + "version": "1.0.0-beta.1", "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",