Skip to content

Commit

Permalink
Change the default version to v0.13.1 (#412)
Browse files Browse the repository at this point in the history
Signed-off-by: Jian Qiu <jqiu@redhat.com>
  • Loading branch information
qiujian16 committed Apr 9, 2024
1 parent 8fe6644 commit 3aea9c5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type VersionBundle struct {
MulticlusterControlplane string
}

var defaultBundleVersion = "0.13.0"
var defaultBundleVersion = "0.13.1"

func GetDefaultBundleVersion() string {
return defaultBundleVersion
Expand Down Expand Up @@ -116,6 +116,17 @@ func GetVersionBundle(version string) (VersionBundle, error) {
MulticlusterControlplane: "v0.4.0",
}

versionBundleList["0.13.1"] = VersionBundle{
Registration: "v0.13.1",
Placement: "v0.13.1",
Work: "v0.13.1",
Operator: "v0.13.1",
AddonManager: "v0.13.1",
AppAddon: "v0.13.0",
PolicyAddon: "v0.13.0",
MulticlusterControlplane: "v0.4.0",
}

// default
versionBundleList["default"] = versionBundleList[defaultBundleVersion]

Expand Down

0 comments on commit 3aea9c5

Please sign in to comment.