Merge pull request #307 from gravitl/v0.8.1

V0.8.1 hotfix version update
This commit is contained in:
dcarns 2021-10-02 08:59:41 -04:00 committed by GitHub
commit 01711b31c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ func main() {
app := cli.NewApp()
app.Name = "Netclient CLI"
app.Usage = "Netmaker's netclient agent and CLI. Used to perform interactions with Netmaker server and set local WireGuard config."
app.Version = "v0.8.0"
app.Version = "v0.8.1"
cliFlags := []cli.Flag{
&cli.StringFlag{
@ -349,7 +349,7 @@ func main() {
}
ncutils.PrintLog("Running with userspace wireguard: "+uspace, 0)
} else if uspace != "wg" {
log.Println("running userspace WireGuard with "+uspace )
log.Println("running userspace WireGuard with " + uspace)
}
}
if !ncutils.IsKernel() {

View file

@ -73,7 +73,7 @@ func GetAPIConnString() string {
return conn
}
func GetVersion() string {
version := "0.8.0"
version := "0.8.1"
if config.Config.Server.Version != "" {
version = config.Config.Server.Version
}