Skip to content

Commit 3bea62f

Browse files
committed
Version bump
1 parent d0df08d commit 3bea62f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

command/cmdHelp.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ func (cmd *HelpCommand) Apply(m *manager.Manager) error {
4444
4545
update
4646
-t|-timeout (duration) [optional = 5*time.Second]
47+
-r|-retry (duration) [optional = 0*time.Second]
4748
4849
ls
4950
-r|-regex (bool) [optional = false]

command/cmdUpdate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func NewUpdateCommand() *UpdateCommand {
2323

2424
cmd.flagSet.DurationVar(&cmd.timeout, "t", 5*time.Second, "")
2525
cmd.flagSet.DurationVar(&cmd.timeout, "timeout", 5*time.Second, "")
26-
cmd.flagSet.DurationVar(&cmd.retry, "r", 0*time.Second, "")
26+
cmd.flagSet.DurationVar(&cmd.retry, "r", 0*time.Second, "") // TODO: Does this get overwritten by `--retry` default?
2727
cmd.flagSet.DurationVar(&cmd.retry, "retry", 0*time.Second, "")
2828

2929
// Don't print unneeded usage

manager/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ func AppName() string {
77

88
// Version returns the current manager version
99
func Version() string {
10-
return "0.2.1"
10+
return "0.3.0"
1111
}

0 commit comments

Comments
 (0)