version update

This commit is contained in:
0xdcarns 2021-11-16 21:22:14 -05:00
parent 8834ad4cf5
commit 879ed9995e
2 changed files with 2 additions and 2 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.6"
app.Version = "v0.9.0"
hostname, err := os.Hostname()
if err != nil {

View file

@ -109,7 +109,7 @@ func GetAPIConnString() string {
// GetVersion - version of netmaker
func GetVersion() string {
version := "0.8.5"
version := "0.9.0"
if config.Config.Server.Version != "" {
version = config.Config.Server.Version
}