diff --git a/netclient/main.go b/netclient/main.go index 0f364ccd..5ef2a95e 100644 --- a/netclient/main.go +++ b/netclient/main.go @@ -18,7 +18,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.9.4" + app.Version = "v0.10.0" cliFlags := cli_options.GetFlags(ncutils.GetHostname()) app.Commands = cli_options.GetCommands(cliFlags[:]) diff --git a/servercfg/serverconf.go b/servercfg/serverconf.go index 8c4daaf3..e203ddd4 100644 --- a/servercfg/serverconf.go +++ b/servercfg/serverconf.go @@ -113,7 +113,7 @@ func GetAPIConnString() string { // GetVersion - version of netmaker func GetVersion() string { - version := "0.9.4" + version := "0.10.0" if config.Config.Server.Version != "" { version = config.Config.Server.Version }