From 6895adbcc9b29b40575b430528257868115c82fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 22:28:14 +0000 Subject: [PATCH] chore: release v0.2.0 (#60) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f04b7e6a..c661ef70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/nearai/ironclaw/compare/v0.1.3...v0.2.0) - 2026-02-16 + +### Added + +- mark Ollama + OpenAI-compatible as implemented ([#102](https://github.com/nearai/ironclaw/pull/102)) +- multi-provider inference + libSQL onboarding selection ([#92](https://github.com/nearai/ironclaw/pull/92)) +- add multi-provider LLM failover with retry backoff ([#28](https://github.com/nearai/ironclaw/pull/28)) +- add libSQL/Turso embedded database backend ([#47](https://github.com/nearai/ironclaw/pull/47)) +- Move debug log truncation from agent loop to REPL channel ([#65](https://github.com/nearai/ironclaw/pull/65)) + +### Fixed + +- shell destructive-command check bypassed by Value::Object arguments ([#72](https://github.com/nearai/ironclaw/pull/72)) +- propagate real tool_call_id instead of hardcoded placeholder ([#73](https://github.com/nearai/ironclaw/pull/73)) +- Fix wasm tool schemas and runtime ([#42](https://github.com/nearai/ironclaw/pull/42)) +- flatten tool messages for NEAR AI cloud-api compatibility ([#41](https://github.com/nearai/ironclaw/pull/41)) +- security hardening across all layers ([#35](https://github.com/nearai/ironclaw/pull/35)) + +### Other + +- Explicitly enable cargo-dist caching for binary artifacts building +- Skip building binary artifacts on every PR +- add module specification rules to CLAUDE.md +- add setup/onboarding specification (src/setup/README.md) +- deduplicate tool code and remove dead stubs ([#98](https://github.com/nearai/ironclaw/pull/98)) +- Reformat architecture diagram in README ([#64](https://github.com/nearai/ironclaw/pull/64)) +- Add review discipline guidelines to CLAUDE.md ([#68](https://github.com/nearai/ironclaw/pull/68)) +- Bump MSRV to 1.92, add GCP deployment files ([#40](https://github.com/nearai/ironclaw/pull/40)) +- Add OpenAI-compatible HTTP API (/v1/chat/completions, /v1/models) ([#31](https://github.com/nearai/ironclaw/pull/31)) + ## [0.1.3](https://github.com/nearai/ironclaw/compare/v0.1.2...v0.1.3) - 2026-02-12 ### Other diff --git a/Cargo.lock b/Cargo.lock index a7b7f585..d20ed6e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2490,7 +2490,7 @@ dependencies = [ [[package]] name = "ironclaw" -version = "0.1.3" +version = "0.2.0" dependencies = [ "aes-gcm", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index 6c0b89d6..d940b82e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironclaw" -version = "0.1.3" +version = "0.2.0" edition = "2024" rust-version = "1.92" description = "Secure personal AI assistant that protects your data and expands its capabilities on the fly"