From addb721d667b169f5f380584055ae3a5ecaa016f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 21 Jul 2021 14:29:47 +0100 Subject: [PATCH] Fixed gateway upgrade command argument description --- gateway/src/commands/upgrade.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) ) }