fix(java-client): bump CLIENT_VERSION constant 0.1.2 -> 0.2.0 to match artifact

The hardcoded clientVersion() string lagged the Gradle version bump in the
JDK-17 retarget, so version/--json self-reported 0.1.2. Align it (and the two
CLI version-command test assertions) to 0.2.0. 97/97 tests pass.
This commit is contained in:
Joseph Doherty
2026-06-26 16:19:17 -04:00
parent 291c94ffe1
commit b6a0d9069c
2 changed files with 3 additions and 3 deletions
@@ -9,7 +9,7 @@ package com.zb.mom.ww.mxgateway.client;
public final class MxGatewayClientVersion {
private static final int GATEWAY_PROTOCOL_VERSION = 3;
private static final int WORKER_PROTOCOL_VERSION = 1;
private static final String CLIENT_VERSION = "0.1.2";
private static final String CLIENT_VERSION = "0.2.0";
private MxGatewayClientVersion() {
}