Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.4.1](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.4.0...v1.4.1) - 2026-07-10

### Fixed

- *(unstable-v2)* Clean up conversion helpers ([#1640](https://github.com/agentclientprotocol/agent-client-protocol/pull/1640))
- *(schema)* remove enum discriminators from invalid schemas ([#1612](https://github.com/agentclientprotocol/agent-client-protocol/pull/1612))

## [1.4.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/v1.3.0...v1.4.0) - 2026-07-06

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
resolver = "3"

[workspace.dependencies]
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.4.0" }
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "1.4.1" }

[workspace.lints.rust]
future_incompatible = { level = "warn", priority = -1 }
Expand Down
2 changes: 1 addition & 1 deletion agent-client-protocol-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "agent-client-protocol-schema"
authors = ["Zed <hi@zed.dev>"]
version = "1.4.0"
version = "1.4.1"
edition = "2024"
license = "Apache-2.0"
description = "A protocol for standardizing communication between code editors and AI coding agents"
Expand Down
6 changes: 6 additions & 0 deletions schema/v1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.19.1](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.19.0...schema-v1.19.1) - 2026-07-10

### Fixed

- *(schema)* remove enum discriminators from invalid schemas ([#1612](https://github.com/agentclientprotocol/agent-client-protocol/pull/1612))

## [1.19.0](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v1.18.0...schema-v1.19.0) - 2026-07-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion schema/v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-json-schema-v1"
version = "1.19.0"
version = "1.19.1"
edition = "2024"
license = "Apache-2.0"
description = "Version marker for ACP v1 JSON Schema GitHub releases"
Expand Down
10 changes: 10 additions & 0 deletions schema/v2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.0-alpha.1](https://github.com/agentclientprotocol/agent-client-protocol/compare/schema-v2.0.0-alpha.0...schema-v2.0.0-alpha.1) - 2026-07-10

### Fixed

- *(schema)* remove enum discriminators from invalid schemas ([#1612](https://github.com/agentclientprotocol/agent-client-protocol/pull/1612))

### Other

- enable schema v2 releases ([#1632](https://github.com/agentclientprotocol/agent-client-protocol/pull/1632))
2 changes: 1 addition & 1 deletion schema/v2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-json-schema-v2"
version = "2.0.0-alpha.0"
version = "2.0.0-alpha.1"
edition = "2024"
license = "Apache-2.0"
description = "Version marker for ACP v2 JSON Schema artifacts"
Expand Down