5be10c5814
Now the version can be changed from Makefile/env. By default version is 'devel' if there is no ldflags in build args. It can be overriden by providing ldflags in Makefile. Change-Id: Ifef5932ec953ccfaeca8a2ef58eb951c900c7a59
36 lines
999 B
Go
36 lines
999 B
Go
/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package version
|
|
|
|
var (
|
|
gitVersion = "devel"
|
|
)
|
|
|
|
// Info structure provides version data for airshipctl
|
|
// For now it has GitVersion with format 'v0.1.0'
|
|
// provided from Makefile during building airshipctl
|
|
// or defined in a local var for development purposes
|
|
type Info struct {
|
|
GitVersion string `json:"gitVersion"`
|
|
}
|
|
|
|
// Get function shows airshipctl version
|
|
// returns filled Info structure
|
|
func Get() Info {
|
|
return Info{
|
|
GitVersion: gitVersion,
|
|
}
|
|
}
|