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"] } ```