diff --git a/VERSION.txt b/VERSION.txt index 2c0a9c7b7..b19b52118 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.7.2 +v0.8.0 diff --git a/pkg/helpers/version/version.go b/pkg/helpers/version/version.go index 17c830b34..bd2e0ff9e 100644 --- a/pkg/helpers/version/version.go +++ b/pkg/helpers/version/version.go @@ -17,7 +17,7 @@ type VersionBundle struct { MulticlusterControlplane string } -var defaultBundleVersion = "0.12.0" +var defaultBundleVersion = "0.13.0" func GetDefaultBundleVersion() string { return defaultBundleVersion @@ -44,66 +44,6 @@ func GetVersionBundle(version string) (VersionBundle, error) { // predefined bundle version // TODO: automated version tracking - versionBundleList["0.5.0"] = VersionBundle{ - Registration: "v0.5.0", - Placement: "v0.2.0", - Work: "v0.5.0", - Operator: "v0.5.0", - AppAddon: "v0.5.0", - PolicyAddon: "v0.8.0", - MulticlusterControlplane: "v0.1.0", - } - - versionBundleList["0.6.0"] = VersionBundle{ - Registration: "v0.6.0", - Placement: "v0.3.0", - Work: "v0.6.0", - Operator: "v0.6.0", - AppAddon: "v0.6.0", - PolicyAddon: "v0.8.0", - MulticlusterControlplane: "v0.1.0", - } - - versionBundleList["0.7.0"] = VersionBundle{ - Registration: "v0.7.0", - Placement: "v0.4.0", - Work: "v0.7.0", - Operator: "v0.7.0", - AppAddon: "v0.7.0", - PolicyAddon: "v0.8.0", - MulticlusterControlplane: "v0.1.0", - } - - versionBundleList["0.8.0"] = VersionBundle{ - Registration: "v0.8.0", - Placement: "v0.8.0", - Work: "v0.8.0", - Operator: "v0.8.0", - AppAddon: "v0.8.0", - PolicyAddon: "v0.8.0", - MulticlusterControlplane: "v0.1.0", - } - - versionBundleList["0.9.0"] = VersionBundle{ - Registration: "v0.9.0", - Placement: "v0.9.0", - Work: "v0.9.0", - Operator: "v0.9.0", - AppAddon: "v0.9.0", - PolicyAddon: "v0.9.0", - MulticlusterControlplane: "v0.1.0", - } - - versionBundleList["0.9.1"] = VersionBundle{ - Registration: "v0.9.0", - Placement: "v0.9.0", - Work: "v0.9.0", - Operator: "v0.9.1", - AppAddon: "v0.9.0", - PolicyAddon: "v0.9.0", - MulticlusterControlplane: "v0.1.0", - } - versionBundleList["0.10.0"] = VersionBundle{ Registration: "v0.10.0", Placement: "v0.10.0", @@ -136,6 +76,17 @@ func GetVersionBundle(version string) (VersionBundle, error) { MulticlusterControlplane: "v0.3.0", } + versionBundleList["0.13.0"] = VersionBundle{ + Registration: "v0.13.0", + Placement: "v0.13.0", + Work: "v0.13.0", + Operator: "v0.13.0", + AddonManager: "v0.13.0", + AppAddon: "v0.13.0", + PolicyAddon: "v0.13.0", + MulticlusterControlplane: "v0.4.0", + } + // default versionBundleList["default"] = versionBundleList[defaultBundleVersion]