From 0dad75f5990dc0109a260423fc61e8920a603ff8 Mon Sep 17 00:00:00 2001 From: Yuanhao Li Date: Sat, 11 Jul 2026 14:34:04 +0200 Subject: [PATCH] release: 0.12.0 GASP bridge (tested conformant runtime), Meta Model API day-one support, session/structured/middleware hardening from the Phase C review, and the MSRV closure via yoagent-state 0.4.2. See CHANGELOG.md. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- docs/concepts/gasp.md | 2 +- docs/getting-started/installation.md | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e812fbf..2b5bbe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to `yoagent` are documented here. The format loosely follows [Keep a Changelog](https://keepachangelog.com/), and the project adheres to [Semantic Versioning](https://semver.org/). -## Unreleased +## 0.12.0 ### Added diff --git a/Cargo.toml b/Cargo.toml index a782a75..0d00076 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yoagent" -version = "0.11.0" +version = "0.12.0" edition = "2021" description = "Simple, effective agent loop with tool execution and event streaming" license = "MIT" diff --git a/README.md b/README.md index 4e9d084..df3bafe 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Or add to `Cargo.toml`: ```toml [dependencies] -yoagent = "0.11" +yoagent = "0.12" tokio = { version = "1", features = ["full"] } ``` diff --git a/docs/concepts/gasp.md b/docs/concepts/gasp.md index 6f790dc..1f5c8e4 100644 --- a/docs/concepts/gasp.md +++ b/docs/concepts/gasp.md @@ -13,7 +13,7 @@ runtime). The bridge is a consumer of the [`AgentEvent`] stream — **zero agent-loop changes**: ```toml -yoagent = { version = "0.11", features = ["gasp"] } +yoagent = { version = "0.12", features = ["gasp"] } ``` diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 26fd90e..2f80394 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -9,7 +9,7 @@ ```toml [dependencies] -yoagent = "0.11" +yoagent = "0.12" tokio = { version = "1", features = ["full"] } ``` @@ -40,5 +40,5 @@ Enable in `Cargo.toml`: ```toml [dependencies] -yoagent = { version = "0.11", features = ["openapi"] } +yoagent = { version = "0.12", features = ["openapi"] } ```