From 171c3d335939ec68d9fb10d48972963c41548884 Mon Sep 17 00:00:00 2001 From: Scott Howe Date: Thu, 27 Jun 2024 12:50:07 -0500 Subject: [PATCH] Updated version strings to 1.1.0 --- cmd/cfm-cli/cmd/root.go | 2 +- cmd/cfm-service/main.go | 2 +- cmd/cxl-host/service/parameters.go | 2 +- webui/package-lock.json | 4 ++-- webui/package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/cfm-cli/cmd/root.go b/cmd/cfm-cli/cmd/root.go index 5624b4b..cb66ddc 100644 --- a/cmd/cfm-cli/cmd/root.go +++ b/cmd/cfm-cli/cmd/root.go @@ -15,7 +15,7 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "cfm []", - Version: "1.x.x", + Version: "1.1.0", Short: "CLI for managing memory appliance(s) via cfm-service.", Long: `A command line interface that connects to a cfm-service instance. Once connected, can use CLI to to manage one or more memory appliances.`, Args: cobra.MatchAll(cobra.NoArgs), diff --git a/cmd/cfm-service/main.go b/cmd/cfm-service/main.go index f106b4a..30fdf47 100644 --- a/cmd/cfm-service/main.go +++ b/cmd/cfm-service/main.go @@ -22,7 +22,7 @@ import ( "k8s.io/klog/v2" ) -var Version = "1.x.x" +var Version = "1.1.0" // This variable is filled in during the linker step - -ldflags "-X main.buildTime=`date -u '+%Y-%m-%dT%H:%M:%S'`" var buildTime = "" diff --git a/cmd/cxl-host/service/parameters.go b/cmd/cxl-host/service/parameters.go index a9dd7e8..3b0db06 100644 --- a/cmd/cxl-host/service/parameters.go +++ b/cmd/cxl-host/service/parameters.go @@ -12,7 +12,7 @@ const ( DefaultVerbosity = "0" // Default log level DefaultPort = "8082" // Default service port RedfishVersion = "/redfish/v1/" - Version = "1.x.x" + Version = "1.1.0" ) type Settings struct { diff --git a/webui/package-lock.json b/webui/package-lock.json index 8d32d00..447c9a8 100644 --- a/webui/package-lock.json +++ b/webui/package-lock.json @@ -1,12 +1,12 @@ { "name": "webui", - "version": "1.x.x", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "webui", - "version": "1.x.x", + "version": "1.1.0", "dependencies": { "@mdi/font": "7.0.96", "axios": "^1.7.2", diff --git a/webui/package.json b/webui/package.json index 982aecf..3ea4dc3 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "webui", - "version": "1.x.x", + "version": "1.1.0", "private": true, "scripts": { "dev": "vite",