more version number changes

Signed-off-by: Matthew R. Kasun <mkasun@nusak.ca>
This commit is contained in:
Matthew R. Kasun 2022-07-26 14:24:22 -04:00
parent 66cbc96b89
commit da828263cb
3 changed files with 28 additions and 4 deletions

View file

@ -12,9 +12,8 @@ var upgrade0145 = UpgradeInfo{
"v0.14.2",
"v0.14.3",
"v0.14.4",
"v0.14.5",
},
NewVersion: "v0.14.6",
NewVersion: "v0.14.5",
OP: update0145,
}

View file

@ -0,0 +1,25 @@
package upgrades
import (
"github.com/gravitl/netmaker/logger"
"github.com/gravitl/netmaker/netclient/config"
)
var upgrade0146 = UpgradeInfo{
RequiredVersions: []string{
"v0.14.0",
"v0.14.1",
"v0.14.2",
"v0.14.3",
"v0.14.4",
"v0.14.5",
},
NewVersion: "v0.14.6",
OP: update0146,
}
func update0146(cfg *config.ClientConfig) {
// do stuff for 14.X -> 14.5
// No-op
logger.Log(0, "updating schema for 0.14.6")
}

View file

@ -3,13 +3,13 @@
"FileVersion": {
"Major": 0,
"Minor": 14,
"Patch": 3,
"Patch": 6,
"Build": 0
},
"ProductVersion": {
"Major": 0,
"Minor": 14,
"Patch": 3,
"Patch": 6,
"Build": 0
},
"FileFlagsMask": "3f",