Skip to content

Commit f1a5639

Browse files
authored
Merge pull request #24 from agntcy/release-plz-2026-04-05T21-19-35Z
chore: release
2 parents 8668746 + b86a59e commit f1a5639

File tree

12 files changed

+65
-15
lines changed

12 files changed

+65
-15
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ rust-version = "1.85"
1919
[workspace.dependencies]
2020
# Internal crates
2121
a2a = { package = "agntcy-a2a", path = "a2a", version = "0.2.3" }
22-
a2a-client = { package = "agntcy-a2a-client", path = "a2a-client", version = "0.1.7" }
23-
a2a-server = { package = "agntcy-a2a-server", path = "a2a-server", version = "0.2.0" }
24-
a2a-pb = { package = "agntcy-a2a-pb", path = "a2a-pb", version = "0.1.3" }
25-
a2a-grpc = { package = "agntcy-a2a-grpc", path = "a2a-grpc", version = "0.1.4" }
26-
a2a-slimrpc = { package = "agntcy-a2a-slimrpc", path = "a2a-slimrpc", version = "0.1.1" }
22+
a2a-client = { package = "agntcy-a2a-client", path = "a2a-client", version = "0.1.8" }
23+
a2a-server = { package = "agntcy-a2a-server", path = "a2a-server", version = "0.2.1" }
24+
a2a-pb = { package = "agntcy-a2a-pb", path = "a2a-pb", version = "0.1.4" }
25+
a2a-grpc = { package = "agntcy-a2a-grpc", path = "a2a-grpc", version = "0.1.5" }
26+
a2a-slimrpc = { package = "agntcy-a2a-slimrpc", path = "a2a-slimrpc", version = "0.1.2" }
2727

2828
# Serialization
2929
serde = { version = "1", features = ["derive"] }

a2a-client/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.8](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-client-v0.1.7...agntcy-a2a-client-v0.1.8) - 2026-04-05
11+
12+
### Added
13+
14+
- use ProtoJSON for JSON wire payloads
15+
16+
### Other
17+
18+
- format ProtoJSON transport changes
19+
1020
## [0.1.7](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-client-v0.1.6...agntcy-a2a-client-v0.1.7) - 2026-04-04
1121

1222
### Fixed

a2a-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-a2a-client"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
description = "A2A v1 async client with protocol binding factory"
55
readme = "README.md"
66
edition.workspace = true

a2a-grpc/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.5](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-grpc-v0.1.4...agntcy-a2a-grpc-v0.1.5) - 2026-04-05
11+
12+
### Fixed
13+
14+
- accept bare gRPC endpoints
15+
16+
### Other
17+
18+
- avoid serializing gRPC client calls
19+
1020
## [0.1.4](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-grpc-v0.1.3...agntcy-a2a-grpc-v0.1.4) - 2026-04-04
1121

1222
### Other

a2a-grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-a2a-grpc"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "A2A v1 gRPC protocol binding for client and server"
55
readme = "README.md"
66
edition.workspace = true

a2a-pb/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-pb-v0.1.3...agntcy-a2a-pb-v0.1.4) - 2026-04-05
11+
12+
### Added
13+
14+
- use ProtoJSON for JSON wire payloads
15+
16+
### Fixed
17+
18+
- add missing source headers
19+
20+
### Other
21+
22+
- format ProtoJSON transport changes
23+
1024
## [0.1.3](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-pb-v0.1.2...agntcy-a2a-pb-v0.1.3) - 2026-04-04
1125

1226
### Other

a2a-pb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-a2a-pb"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "A2A v1 protobuf-generated types and conversion layer"
55
readme = "README.md"
66
edition.workspace = true

a2a-server/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-server-v0.2.0...agntcy-a2a-server-v0.2.1) - 2026-04-05
11+
12+
### Added
13+
14+
- use ProtoJSON for JSON wire payloads
15+
16+
### Other
17+
18+
- format ProtoJSON transport changes
19+
1020
## [0.2.0](https://github.com/agntcy/a2a-rs/compare/agntcy-a2a-server-v0.1.3...agntcy-a2a-server-v0.2.0) - 2026-04-04
1121

1222
### Fixed

a2a-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-a2a-server"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A2A v1 async server framework"
55
readme = "README.md"
66
edition.workspace = true

0 commit comments

Comments
 (0)