mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-10 15:14:22 +08:00
more version number changes
Signed-off-by: Matthew R. Kasun <mkasun@nusak.ca>
This commit is contained in:
parent
66cbc96b89
commit
da828263cb
3 changed files with 28 additions and 4 deletions
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
25
netclient/functions/upgrades/v0.14.-6.go
Normal file
25
netclient/functions/upgrades/v0.14.-6.go
Normal 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")
|
||||
}
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue