diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2679d57f2..3dcc2dbea 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.21" + ".": "0.2.22" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e479d8a2..3de746b95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.2.22](https://github.com/open-feature/open-feature-operator/compare/v0.2.21...v0.2.22) (2022-12-16) + + +### Bug Fixes + +* **deps:** update module go.uber.org/zap to v1.24.0 ([#268](https://github.com/open-feature/open-feature-operator/issues/268)) ([b7bdde8](https://github.com/open-feature/open-feature-operator/commit/b7bdde8944446621751e6ef70e6b0f0646adee21)) +* Version fix ([#284](https://github.com/open-feature/open-feature-operator/issues/284)) ([a9c6f15](https://github.com/open-feature/open-feature-operator/commit/a9c6f154589f1e00e60883c229b3ee29d7d2e9aa)) + ## [0.2.21](https://github.com/open-feature/open-feature-operator/compare/v0.2.20...v0.2.21) (2022-12-16) diff --git a/Makefile b/Makefile index 8186d78b7..90f355947 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ IMG ?= controller:latest KUSTOMIZE_OVERLAY ?= DEFAULT # ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary. FLAGD_VERSION=v0.2.7 -CHART_VERSION=v0.2.21# x-release-please-version +CHART_VERSION=v0.2.22# x-release-please-version ENVTEST_K8S_VERSION = 1.25 # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) diff --git a/chart/open-feature-operator/Chart.yaml b/chart/open-feature-operator/Chart.yaml index 23e6fc6f1..25c6a6be3 100755 --- a/chart/open-feature-operator/Chart.yaml +++ b/chart/open-feature-operator/Chart.yaml @@ -13,9 +13,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "v0.2.21" # x-release-please-version +version: "v0.2.22" # x-release-please-version # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.2.21" # x-release-please-version +appVersion: "v0.2.22" # x-release-please-version diff --git a/chart/open-feature-operator/values.yaml b/chart/open-feature-operator/values.yaml index 4dd6f0689..648777346 100644 --- a/chart/open-feature-operator/values.yaml +++ b/chart/open-feature-operator/values.yaml @@ -16,7 +16,7 @@ controllerManager: manager: image: repository: ghcr.io/open-feature/open-feature-operator - tag: v0.2.21 # x-release-please-version + tag: v0.2.22 # x-release-please-version resources: limits: cpu: 500m diff --git a/docs/installation.md b/docs/installation.md index b74c5eff2..3697af097 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -32,13 +32,13 @@ Apply the release yaml directly via kubectl ```sh kubectl create namespace open-feature-operator-system -kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.21/release.yaml +kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.22/release.yaml ``` ### Uninstall ```sh -kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.21/release.yaml +kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.22/release.yaml kubectl delete namespace open-feature-operator-system ```