Skip to content

Commit bc8c82e

Browse files
authored
update changelog 0.4.1 (#285)
Signed-off-by: ycyaoxdu <[email protected]> Signed-off-by: ycyaoxdu <[email protected]>
1 parent 75a6a96 commit bc8c82e

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,15 @@
11
[comment]: # ( Copyright Contributors to the Open Cluster Management project )
22
# Release Content
33
## Additions
4-
- [build: create metrics service when installing hub](https://github.com/open-cluster-management-io/clusteradm/pull/271) @chenz402
5-
- [Added command to create a sample application](https://github.com/open-cluster-management-io/clusteradm/pull/245) @IlonaShishov
6-
- [feat: add command clusteradm get placements](https://github.com/open-cluster-management-io/clusteradm/pull/158) @ycyaoxdu
7-
- [feat: add printer supporting tree, table and yaml format](https://github.com/open-cluster-management-io/clusteradm/pull/174) @ycyaoxdu
4+
- [Pin the OCM version for add-ons](https://github.com/open-cluster-management-io/clusteradm/pull/280) @dhaiducek
5+
86

97
## Breaking Changes
108
N/A
119

1210
## Changes
13-
- [allow install hub-addon specify ns](https://github.com/open-cluster-management-io/clusteradm/pull/275) @ycyaoxdu
14-
- [Remove redundant check](https://github.com/open-cluster-management-io/clusteradm/pull/268) @qiujian16
15-
- [Refactor accept for better error message](https://github.com/open-cluster-management-io/clusteradm/pull/270) @qiujian16
16-
- [Remove unnecessary files when join](https://github.com/open-cluster-management-io/clusteradm/pull/266) @qiujian16
11+
- [Chore: error while run command against wrong cluser](https://github.com/open-cluster-management-io/clusteradm/pull/283) @ycyaoxdu
1712

18-
## Bug Fixes
19-
- [bug fix: apply klusterlet cr after crd applied](https://github.com/open-cluster-management-io/clusteradm/pull/282) @ycyaoxdu
20-
- [sync governance-policy-addon-controller deployment image](https://github.com/open-cluster-management-io/clusteradm/pull/279) @haoqing0110
21-
- [bug fix: cr apply before crd registered](https://github.com/open-cluster-management-io/clusteradm/pull/276) @ycyaoxdu
22-
- [fix: show crd version in command get hub-info](https://github.com/open-cluster-management-io/clusteradm/pull/272) @ycyaoxdu
2313

14+
## Bug Fixes
15+
N/A

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.4.0
1+
v0.4.1

pkg/helpers/version/version.go

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type VersionBundle struct {
1515
PolicyAddon string
1616
}
1717

18-
var defaultBundleVersion = "0.9.0"
18+
var defaultBundleVersion = "0.9.1"
1919

2020
func GetDefaultBundleVersion() string {
2121
return defaultBundleVersion
@@ -85,6 +85,15 @@ func GetVersionBundle(version string) (VersionBundle, error) {
8585
PolicyAddon: "v0.9.0",
8686
}
8787

88+
versionBundleList["0.9.1"] = VersionBundle{
89+
Registration: "v0.9.0",
90+
Placement: "v0.9.0",
91+
Work: "v0.9.0",
92+
Operator: "v0.9.1",
93+
AppAddon: "v0.9.0",
94+
PolicyAddon: "v0.9.0",
95+
}
96+
8897
// default
8998
versionBundleList["default"] = versionBundleList[defaultBundleVersion]
9099

0 commit comments

Comments
 (0)