Skip to content

Commit

Permalink
update changelog 0.4.1 (#285)
Browse files Browse the repository at this point in the history
Signed-off-by: ycyaoxdu <[email protected]>

Signed-off-by: ycyaoxdu <[email protected]>
  • Loading branch information
ycyaoxdu authored Oct 31, 2022
1 parent 75a6a96 commit bc8c82e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
18 changes: 5 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
[comment]: # ( Copyright Contributors to the Open Cluster Management project )
# Release Content
## Additions
- [build: create metrics service when installing hub](https://github.com/open-cluster-management-io/clusteradm/pull/271) @chenz402
- [Added command to create a sample application](https://github.com/open-cluster-management-io/clusteradm/pull/245) @IlonaShishov
- [feat: add command clusteradm get placements](https://github.com/open-cluster-management-io/clusteradm/pull/158) @ycyaoxdu
- [feat: add printer supporting tree, table and yaml format](https://github.com/open-cluster-management-io/clusteradm/pull/174) @ycyaoxdu
- [Pin the OCM version for add-ons](https://github.com/open-cluster-management-io/clusteradm/pull/280) @dhaiducek


## Breaking Changes
N/A

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

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

## Bug Fixes
N/A
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.0
v0.4.1
11 changes: 10 additions & 1 deletion pkg/helpers/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type VersionBundle struct {
PolicyAddon string
}

var defaultBundleVersion = "0.9.0"
var defaultBundleVersion = "0.9.1"

func GetDefaultBundleVersion() string {
return defaultBundleVersion
Expand Down Expand Up @@ -85,6 +85,15 @@ func GetVersionBundle(version string) (VersionBundle, error) {
PolicyAddon: "v0.9.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",
}

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

Expand Down

0 comments on commit bc8c82e

Please sign in to comment.