diff --git a/CHANGELOG.md b/CHANGELOG.md index f652d6c28..8fc8d6f0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,33 @@ Versioning](https://semver.org/spec/v2.0.0.html). ### Enhancements +- + +### Fixes + +- + +### Internal Changes + +- + +### Deprecations + +- + +### Removals + +- + +### Security + +- + + +## [0.1.49] - 2022-03-22 + +### Enhancements + - Restructured the project documentation into separate guides for different audiences. This primarily includes an installation guide, a usage guide, and a contributor guide. @@ -42,10 +69,6 @@ Versioning](https://semver.org/spec/v2.0.0.html). - The TestInconsistentResult e2e test was relying on a certain order of results. This bug was fixed and the test now passes with any order of results. -### Deprecations - -- - ### Removals - The Deployment resource in `deploy/eks.yaml` has been removed in favor of a @@ -56,10 +79,6 @@ Versioning](https://semver.org/spec/v2.0.0.html). [deploying](https://github.com/openshift/compliance-operator#deploying-with-helm) the operator on AWS EKS. -### Security - -- - ## [0.1.48] - 2022-01-28 diff --git a/deploy/compliance-operator-chart/Chart.yaml b/deploy/compliance-operator-chart/Chart.yaml index e9b966dc8..d74dbc025 100644 --- a/deploy/compliance-operator-chart/Chart.yaml +++ b/deploy/compliance-operator-chart/Chart.yaml @@ -21,4 +21,4 @@ version: 0.1.0 # 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: "0.1.48" +appVersion: "0.1.49" diff --git a/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml b/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml index efccfa619..5b1c87b31 100644 --- a/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml +++ b/deploy/olm-catalog/compliance-operator/manifests/compliance-operator.clusterserviceversion.yaml @@ -160,18 +160,18 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <0.1.48' + olm.skipRange: '>=0.1.17 <0.1.49' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' repository: https://github.com/openshift/compliance-operator support: Red Hat Inc. - name: compliance-operator.v0.1.48 - namespace: placeholder labels: operatorframework.io/arch.amd64: supported operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported + name: compliance-operator.v0.1.49 + namespace: placeholder spec: apiservicedefinitions: {} customresourcedefinitions: @@ -1289,10 +1289,10 @@ spec: - name: RELATED_IMAGE_OPENSCAP value: quay.io/compliance-operator/openscap-ocp:1.3.5 - name: RELATED_IMAGE_OPERATOR - value: quay.io/compliance-operator/compliance-operator:0.1.48 + value: quay.io/compliance-operator/compliance-operator:0.1.49 - name: RELATED_IMAGE_PROFILE value: quay.io/complianceascode/ocp4:latest - image: quay.io/compliance-operator/compliance-operator:0.1.48 + image: quay.io/compliance-operator/compliance-operator:0.1.49 imagePullPolicy: Always name: compliance-operator resources: @@ -1609,4 +1609,4 @@ spec: provider: name: Red Hat Inc. url: www.redhat.com - version: 0.1.48 + version: 0.1.49 diff --git a/version/version.go b/version/version.go index 28d47522d..36bab2410 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.1.48" + Version = "0.1.49" )