diff --git a/CHANGELOG.md b/CHANGELOG.md index 83715d7cf..44220302a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.4.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.3.0...v1.4.0) - 2026-07-06 + +### Added + +- *(unstable)* Add descriptions to elicitation enum options ([#1397](https://github.com/agentclientprotocol/agent-client-protocol/pull/1397)) + ## [1.3.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.2.0...v1.3.0) - 2026-07-06 ### Added diff --git a/Cargo.lock b/Cargo.lock index f3df8599a..f71f21edb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-client-protocol-json-schema-v1" -version = "1.18.0" +version = "1.19.0" [[package]] name = "agent-client-protocol-json-schema-v2" @@ -12,7 +12,7 @@ version = "2.0.0-alpha.0" [[package]] name = "agent-client-protocol-schema" -version = "1.3.0" +version = "1.4.0" dependencies = [ "anyhow", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index a4a15f9cb..1cefcabd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ resolver = "3" [workspace.dependencies] -agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.3.0" } +agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.4.0" } [workspace.lints.rust] future_incompatible = { level = "warn", priority = -1 } diff --git a/agent-client-protocol-schema/Cargo.toml b/agent-client-protocol-schema/Cargo.toml index 28e387cf7..70e3c47ec 100644 --- a/agent-client-protocol-schema/Cargo.toml +++ b/agent-client-protocol-schema/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "agent-client-protocol-schema" authors = ["Zed "] -version = "1.3.0" +version = "1.4.0" edition = "2024" license = "Apache-2.0" description = "A protocol for standardizing communication between code editors and AI coding agents" diff --git a/schema/v1/CHANGELOG.md b/schema/v1/CHANGELOG.md index f6b311aef..4b8be066a 100644 --- a/schema/v1/CHANGELOG.md +++ b/schema/v1/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.19.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.18.0...schema-v1.19.0) - 2026-07-06 + +### Added + +- *(unstable)* Add descriptions to elicitation enum options ([#1397](https://github.com/agentclientprotocol/agent-client-protocol/pull/1397)) + ## [1.18.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.17.0...schema-v1.18.0) - 2026-07-06 ### Added diff --git a/schema/v1/Cargo.toml b/schema/v1/Cargo.toml index 977785d89..78f9a4f92 100644 --- a/schema/v1/Cargo.toml +++ b/schema/v1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-client-protocol-json-schema-v1" -version = "1.18.0" +version = "1.19.0" edition = "2024" license = "Apache-2.0" description = "Version marker for ACP v1 JSON Schema GitHub releases"