From 9aee1138818ba547655756181531dc23ce07b4ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 10:15:09 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ Cargo.toml | 12 ++++++------ a2a-client/CHANGELOG.md | 6 ++++++ a2a-client/Cargo.toml | 2 +- a2a-grpc/CHANGELOG.md | 6 ++++++ a2a-grpc/Cargo.toml | 2 +- a2a-pb/CHANGELOG.md | 6 ++++++ a2a-pb/Cargo.toml | 2 +- a2a-server/CHANGELOG.md | 6 ++++++ a2a-server/Cargo.toml | 2 +- a2a-slimrpc/CHANGELOG.md | 6 ++++++ a2a-slimrpc/Cargo.toml | 2 +- a2a/CHANGELOG.md | 6 ++++++ a2a/Cargo.toml | 2 +- a2acli/CHANGELOG.md | 6 ++++++ a2acli/Cargo.toml | 2 +- 16 files changed, 61 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15c612d..276dfb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agntcy-a2a" -version = "0.2.4" +version = "0.2.5" dependencies = [ "base64 0.22.1", "chrono", @@ -16,7 +16,7 @@ dependencies = [ [[package]] name = "agntcy-a2a-client" -version = "0.1.13" +version = "0.1.14" dependencies = [ "agntcy-a2a", "agntcy-a2a-pb", @@ -36,7 +36,7 @@ dependencies = [ [[package]] name = "agntcy-a2a-grpc" -version = "0.1.11" +version = "0.1.12" dependencies = [ "agntcy-a2a", "agntcy-a2a-client", @@ -53,7 +53,7 @@ dependencies = [ [[package]] name = "agntcy-a2a-pb" -version = "0.1.6" +version = "0.1.7" dependencies = [ "agntcy-a2a", "chrono", @@ -71,7 +71,7 @@ dependencies = [ [[package]] name = "agntcy-a2a-server" -version = "0.2.6" +version = "0.2.7" dependencies = [ "agntcy-a2a", "agntcy-a2a-pb", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "agntcy-a2a-slimrpc" -version = "0.1.8" +version = "0.1.9" dependencies = [ "agntcy-a2a", "agntcy-a2a-client", diff --git a/Cargo.toml b/Cargo.toml index e1c8ac4..9c87e50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,12 +19,12 @@ rust-version = "1.85" [workspace.dependencies] # Internal crates -a2a = { package = "agntcy-a2a", path = "a2a", version = "0.2.4" } -a2a-client = { package = "agntcy-a2a-client", path = "a2a-client", version = "0.1.13" } -a2a-server = { package = "agntcy-a2a-server", path = "a2a-server", version = "0.2.6" } -a2a-pb = { package = "agntcy-a2a-pb", path = "a2a-pb", version = "0.1.6" } -a2a-grpc = { package = "agntcy-a2a-grpc", path = "a2a-grpc", version = "0.1.11" } -a2a-slimrpc = { package = "agntcy-a2a-slimrpc", path = "a2a-slimrpc", version = "0.1.8" } +a2a = { package = "agntcy-a2a", path = "a2a", version = "0.2.5" } +a2a-client = { package = "agntcy-a2a-client", path = "a2a-client", version = "0.1.14" } +a2a-server = { package = "agntcy-a2a-server", path = "a2a-server", version = "0.2.7" } +a2a-pb = { package = "agntcy-a2a-pb", path = "a2a-pb", version = "0.1.7" } +a2a-grpc = { package = "agntcy-a2a-grpc", path = "a2a-grpc", version = "0.1.12" } +a2a-slimrpc = { package = "agntcy-a2a-slimrpc", path = "a2a-slimrpc", version = "0.1.9" } # Serialization serde = { version = "1", features = ["derive"] } diff --git a/a2a-client/CHANGELOG.md b/a2a-client/CHANGELOG.md index 3439271..e076ba8 100644 --- a/a2a-client/CHANGELOG.md +++ b/a2a-client/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.14](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-client-v0.1.13...agntcy-a2a-client-v0.1.14) - 2026-04-08 + +### Added + +- add standalone a2acli CLI ([#38](https://github.com/agntcy/a2a-rs/pull/38)) + ## [0.1.13](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-client-v0.1.12...agntcy-a2a-client-v0.1.13) - 2026-04-06 ### Fixed diff --git a/a2a-client/Cargo.toml b/a2a-client/Cargo.toml index 5d5da13..749587a 100644 --- a/a2a-client/Cargo.toml +++ b/a2a-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a-client" -version = "0.1.13" +version = "0.1.14" description = "A2A v1 async client with protocol binding factory" readme = "README.md" edition.workspace = true diff --git a/a2a-grpc/CHANGELOG.md b/a2a-grpc/CHANGELOG.md index 5af2569..b4a81ba 100644 --- a/a2a-grpc/CHANGELOG.md +++ b/a2a-grpc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.12](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-grpc-v0.1.11...agntcy-a2a-grpc-v0.1.12) - 2026-04-08 + +### Other + +- updated the following local packages: agntcy-a2a, agntcy-a2a-client, agntcy-a2a-pb, agntcy-a2a-server + ## [0.1.11](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-grpc-v0.1.10...agntcy-a2a-grpc-v0.1.11) - 2026-04-06 ### Other diff --git a/a2a-grpc/Cargo.toml b/a2a-grpc/Cargo.toml index 6a298c2..a979e12 100644 --- a/a2a-grpc/Cargo.toml +++ b/a2a-grpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a-grpc" -version = "0.1.11" +version = "0.1.12" description = "A2A v1 gRPC protocol binding for client and server" readme = "README.md" edition.workspace = true diff --git a/a2a-pb/CHANGELOG.md b/a2a-pb/CHANGELOG.md index 101ad73..7d5d6ee 100644 --- a/a2a-pb/CHANGELOG.md +++ b/a2a-pb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-pb-v0.1.6...agntcy-a2a-pb-v0.1.7) - 2026-04-08 + +### Other + +- updated the following local packages: agntcy-a2a + ## [0.1.6](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-pb-v0.1.5...agntcy-a2a-pb-v0.1.6) - 2026-04-06 ### Added diff --git a/a2a-pb/Cargo.toml b/a2a-pb/Cargo.toml index d449cd9..5890ae5 100644 --- a/a2a-pb/Cargo.toml +++ b/a2a-pb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a-pb" -version = "0.1.6" +version = "0.1.7" description = "A2A v1 protobuf-generated types and conversion layer" readme = "README.md" edition.workspace = true diff --git a/a2a-server/CHANGELOG.md b/a2a-server/CHANGELOG.md index 544d1e4..6b2ff12 100644 --- a/a2a-server/CHANGELOG.md +++ b/a2a-server/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.7](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-server-v0.2.6...agntcy-a2a-server-v0.2.7) - 2026-04-08 + +### Other + +- updated the following local packages: agntcy-a2a, agntcy-a2a-pb + ## [0.2.6](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-server-v0.2.5...agntcy-a2a-server-v0.2.6) - 2026-04-06 ### Other diff --git a/a2a-server/Cargo.toml b/a2a-server/Cargo.toml index 6346fe0..cbf9e97 100644 --- a/a2a-server/Cargo.toml +++ b/a2a-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a-server" -version = "0.2.6" +version = "0.2.7" description = "A2A v1 async server framework" readme = "README.md" edition.workspace = true diff --git a/a2a-slimrpc/CHANGELOG.md b/a2a-slimrpc/CHANGELOG.md index c803889..376c83d 100644 --- a/a2a-slimrpc/CHANGELOG.md +++ b/a2a-slimrpc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.9](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-slimrpc-v0.1.8...agntcy-a2a-slimrpc-v0.1.9) - 2026-04-08 + +### Other + +- updated the following local packages: agntcy-a2a, agntcy-a2a-client, agntcy-a2a-pb, agntcy-a2a-server + ## [0.1.8](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-slimrpc-v0.1.7...agntcy-a2a-slimrpc-v0.1.8) - 2026-04-06 ### Other diff --git a/a2a-slimrpc/Cargo.toml b/a2a-slimrpc/Cargo.toml index 399d6d9..f9e768b 100644 --- a/a2a-slimrpc/Cargo.toml +++ b/a2a-slimrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a-slimrpc" -version = "0.1.8" +version = "0.1.9" description = "A2A v1 SLIMRPC protocol binding for client and server" readme = "README.md" edition.workspace = true diff --git a/a2a/CHANGELOG.md b/a2a/CHANGELOG.md index 774bc63..0527601 100644 --- a/a2a/CHANGELOG.md +++ b/a2a/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-v0.2.4...agntcy-a2a-v0.2.5) - 2026-04-08 + +### Added + +- add standalone a2acli CLI ([#38](https://github.com/agntcy/a2a-rs/pull/38)) + ## [0.2.4](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-v0.2.3...agntcy-a2a-v0.2.4) - 2026-04-05 ### Fixed diff --git a/a2a/Cargo.toml b/a2a/Cargo.toml index 4270268..aa0fd0a 100644 --- a/a2a/Cargo.toml +++ b/a2a/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agntcy-a2a" -version = "0.2.4" +version = "0.2.5" description = "A2A v1 protocol types and core definitions" readme = "README.md" edition.workspace = true diff --git a/a2acli/CHANGELOG.md b/a2acli/CHANGELOG.md index 4df6828..4eb9f7f 100644 --- a/a2acli/CHANGELOG.md +++ b/a2acli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0](https://github.com/agntcy/a2a-rs/releases/tag/agntcy-a2acli-v0.1.0) - 2026-04-08 + +### Added + +- add standalone a2acli CLI ([#38](https://github.com/agntcy/a2a-rs/pull/38)) + ### Added - add standalone `a2acli` binary crate diff --git a/a2acli/Cargo.toml b/a2acli/Cargo.toml index 705f20a..4071ae0 100644 --- a/a2acli/Cargo.toml +++ b/a2acli/Cargo.toml @@ -30,4 +30,4 @@ tokio = { workspace = true } a2a-server = { workspace = true } assert_cmd = "2" async-trait = { workspace = true } -axum = { workspace = true } \ No newline at end of file +axum = { workspace = true }