From 2749fa1015ad9f0529a31ecd18fac07d7efb8896 Mon Sep 17 00:00:00 2001 From: Nick Boldt Date: Mon, 18 Sep 2023 15:28:41 -0300 Subject: [PATCH] remove extra -next suffix Change-Id: Ib2e2c0f79fb9a43d26dc9ebed8930d2784c1ac4a Signed-off-by: Nick Boldt --- README.md | 2 +- cmd/configbump/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d4c579d..007f625 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ We originally wrote a prototype of this tool in Rust (https://github.com/metlos/ ``` $ ./configbump --help -config-bump 7.74.1-next-next +config-bump 7.74.1-next Usage: configbump --dir DIR --labels LABELS [--namespace NAMESPACE] Options: diff --git a/cmd/configbump/main.go b/cmd/configbump/main.go index c274359..e791f74 100644 --- a/cmd/configbump/main.go +++ b/cmd/configbump/main.go @@ -35,7 +35,7 @@ type opts struct { // Version returns the version of the program func (opts) Version() string { - return "config-bump 7.74.1-next-next" + return "config-bump 7.74.1-next" } const controllerName = "config-bump"