mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-30 00:45:20 +08:00
Merge pull request #1419 from gravitl/feature_v0.14.6_version_numbers
more version number changes
This commit is contained in:
commit
103fe654ed
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