The published version of neo-cli v3.9.2 reports its version as 3.9.1 when queried through the getversion RPC method.
This appears to be caused by a mismatch in package references, as the neo package dependency has not been updated to 3.9.2 within the CLI project.
Since the RPC Plugin retrieves the version string from LocalNode.UserAgent, and this value is derived from the assembly version of the core neo library rather than the CLI, the output remains outdated.
https://github.com/neo-project/neo-node/blob/master-n3/plugins/RpcServer/RpcServer.Node.cs#L153

The published version of neo-cli
v3.9.2reports its version as3.9.1when queried through thegetversionRPC method.This appears to be caused by a mismatch in package references, as the neo package dependency has not been updated to
3.9.2within the CLI project.Since the RPC Plugin retrieves the version string from
LocalNode.UserAgent, and this value is derived from the assembly version of the core neo library rather than the CLI, the output remains outdated.https://github.com/neo-project/neo-node/blob/master-n3/plugins/RpcServer/RpcServer.Node.cs#L153