diff --git a/CHANGELOG.md b/CHANGELOG.md index 12560ea..0f60173 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.11.0 ### Fixed (pre-release review of the items below) diff --git a/Cargo.toml b/Cargo.toml index 945a6f8..bb06bb1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yoagent" -version = "0.10.0" +version = "0.11.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 c33bcc4..e864468 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Or add to `Cargo.toml`: ```toml [dependencies] -yoagent = "0.10" +yoagent = "0.11" tokio = { version = "1", features = ["full"] } ``` diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 6a94770..26fd90e 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -9,7 +9,7 @@ ```toml [dependencies] -yoagent = "0.10" +yoagent = "0.11" tokio = { version = "1", features = ["full"] } ``` @@ -40,5 +40,5 @@ Enable in `Cargo.toml`: ```toml [dependencies] -yoagent = { version = "0.10", features = ["openapi"] } +yoagent = { version = "0.11", features = ["openapi"] } ```