diff --git a/gateway/src/commands/upgrade.rs b/gateway/src/commands/upgrade.rs index f6777cd201..03f349c397 100644 --- a/gateway/src/commands/upgrade.rs +++ b/gateway/src/commands/upgrade.rs @@ -55,12 +55,12 @@ pub fn command_args<'a, 'b>() -> App<'a, 'b> { ) .arg(Arg::with_name("listening-address") .long("listening-address") - .help("REQUIRED FOR 0.Y.Z UPGRADE. Specifies the listening address of this gateway") + .help("REQUIRED FOR 0.11.0 UPGRADE. Specifies the listening address of this gateway") .takes_value(true) ) .arg(Arg::with_name("announce-address") .long("announce-address") - .help("OPTIONAL FOR 0.Y.Z UPGRADE. Specifies the announce address of this gateway. If not provided, it will be set to the same value as listening address") + .help("OPTIONAL FOR 0.11.0 UPGRADE. Specifies the announce address of this gateway. If not provided, it will be set to the same value as listening address") .takes_value(true) ) }