From e41959bfdcc7314445e1e06e633b69f697ac36d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 20:48:13 +0000 Subject: [PATCH] chore: release v0.8.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 194c9dad..0a37239b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/nearai/ironclaw/compare/ironclaw-v0.7.0...ironclaw-v0.8.0) - 2026-02-20 + +### Added + +- extension registry with metadata catalog and onboarding integration ([#238](https://github.com/nearai/ironclaw/pull/238)) +- *(models)* add GPT-5.3 Codex, full GPT-5.x family, Claude 4.x series, o4-mini ([#197](https://github.com/nearai/ironclaw/pull/197)) +- wire memory hygiene into the heartbeat loop ([#195](https://github.com/nearai/ironclaw/pull/195)) + +### Fixed + +- persist WASM channel workspace writes across callbacks ([#264](https://github.com/nearai/ironclaw/pull/264)) +- consolidate per-module ENV_MUTEX into crate-wide test lock ([#246](https://github.com/nearai/ironclaw/pull/246)) +- remove auto-proceed fake user message injection from agent loop ([#255](https://github.com/nearai/ironclaw/pull/255)) +- onboarding errors reset flow and remote server auth (#185, #186) ([#248](https://github.com/nearai/ironclaw/pull/248)) +- parallelize tool call execution via JoinSet ([#219](https://github.com/nearai/ironclaw/pull/219)) ([#252](https://github.com/nearai/ironclaw/pull/252)) +- prevent pipe deadlock in shell command execution ([#140](https://github.com/nearai/ironclaw/pull/140)) +- persist turns after approval and add agent-level tests ([#250](https://github.com/nearai/ironclaw/pull/250)) + +### Other + +- remove Responses API, consolidate to Chat Completions ([#272](https://github.com/nearai/ironclaw/pull/272)) +- add automated PR labeling system ([#253](https://github.com/nearai/ironclaw/pull/253)) +- update CLAUDE.md for recently merged features ([#183](https://github.com/nearai/ironclaw/pull/183)) + ## [0.7.0](https://github.com/nearai/ironclaw/compare/ironclaw-v0.6.0...ironclaw-v0.7.0) - 2026-02-19 ### Added diff --git a/Cargo.lock b/Cargo.lock index 1bfa51d1..5906ba34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2490,7 +2490,7 @@ dependencies = [ [[package]] name = "ironclaw" -version = "0.7.0" +version = "0.8.0" dependencies = [ "aes-gcm", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index d37fa792..736c6c0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ exclude = [ [package] name = "ironclaw" -version = "0.7.0" +version = "0.8.0" edition = "2024" rust-version = "1.92" description = "Secure personal AI assistant that protects your data and expands its capabilities on the fly"