From 4fe1917aa68b7f8af83d5088f4dcfc601e075a51 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Thu, 9 Jul 2026 14:43:03 -0400 Subject: [PATCH] fix(clients): align client version constants to package manifests (CLI-18/21/26/29) - .NET: add explicit 0.1.2 to client csproj (CLI-18) - Go: ClientVersion 0.1.0-dev -> 0.1.2 (CLI-21) - Python: __version__ 0.1.0 -> 0.1.2 to match pyproject.toml (CLI-26) - Rust: CLIENT_VERSION now sourced from env!(CARGO_PKG_VERSION) so it cannot drift from Cargo.toml (CLI-29) Verified: dotnet build clean; go build/test ok; cargo check/test/clippy clean; pytest 127 passed. P2 client version-drift cluster. Claude-Session: https://claude.ai/code/session_01DMXXvNuPekkkrTEyPNxEkW --- .../ZB.MOM.WW.MxGateway.Client.csproj | 1 + clients/go/mxgateway/version.go | 6 +++--- clients/python/src/zb_mom_ww_mxgateway/version.py | 2 +- clients/rust/src/version.rs | 5 +++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/clients/dotnet/ZB.MOM.WW.MxGateway.Client/ZB.MOM.WW.MxGateway.Client.csproj b/clients/dotnet/ZB.MOM.WW.MxGateway.Client/ZB.MOM.WW.MxGateway.Client.csproj index 4df7458..2da0c6f 100644 --- a/clients/dotnet/ZB.MOM.WW.MxGateway.Client/ZB.MOM.WW.MxGateway.Client.csproj +++ b/clients/dotnet/ZB.MOM.WW.MxGateway.Client/ZB.MOM.WW.MxGateway.Client.csproj @@ -19,6 +19,7 @@ true ZB.MOM.WW.MxGateway.Client + 0.1.2 .NET 10 gRPC client for the MxAccessGateway service. Provides typed wrappers, retry, and a lazy-browse walker over the Galaxy Repository hierarchy. README.md