From be6fb72bfc49c2d18895624ac6a4c7ce1f10e33b Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Fri, 31 May 2024 08:49:57 -0500 Subject: [PATCH] Release v1.5.0 --- CHANGELOG.md | 27 +++++++++++++++++++ ...liance-operator.clusterserviceversion.yaml | 18 ++++++------- catalog/preamble.json | 4 +-- ...liance-operator.clusterserviceversion.yaml | 6 ++--- version.Makefile | 2 +- version/version.go | 2 +- 6 files changed, 43 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 151adecf0..2489bd4ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,33 @@ Versioning](https://semver.org/spec/v2.0.0.html). - +## [1.5.0] - 2024-05-31 + +### Enhancements + +- + +### Fixes + +- + +### Internal Changes + +- + +### Deprecations + +- + +### Removals + +- + +### Security + +- + + ## [1.4.1] - 2024-04-17 ### Fixes diff --git a/bundle/manifests/compliance-operator.clusterserviceversion.yaml b/bundle/manifests/compliance-operator.clusterserviceversion.yaml index 89cfcb3c6..4f24290da 100644 --- a/bundle/manifests/compliance-operator.clusterserviceversion.yaml +++ b/bundle/manifests/compliance-operator.clusterserviceversion.yaml @@ -160,7 +160,7 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <1.4.1' + olm.skipRange: '>=0.1.17 <1.5.0' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' @@ -174,7 +174,7 @@ metadata: operatorframework.io/arch.amd64: supported operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported - name: compliance-operator.v1.4.1 + name: compliance-operator.v1.5.0 namespace: placeholder spec: apiservicedefinitions: {} @@ -1244,13 +1244,13 @@ spec: - list - watch - apiGroups: - - config.openshift.io + - config.openshift.io resources: - - infrastructures + - infrastructures verbs: - - get - - list - - watch + - get + - list + - watch serviceAccountName: compliance-operator - rules: - apiGroups: @@ -1669,5 +1669,5 @@ spec: name: operator - image: ghcr.io/complianceascode/k8scontent:latest name: profile - replaces: compliance-operator.v1.4.0 - version: 1.4.1 + replaces: compliance-operator.v1.4.1 + version: 1.5.0 diff --git a/catalog/preamble.json b/catalog/preamble.json index 6fca687cb..06aa67e86 100644 --- a/catalog/preamble.json +++ b/catalog/preamble.json @@ -13,8 +13,8 @@ "package": "compliance-operator", "entries": [ { - "name": "compliance-operator.v1.4.1", - "skipRange": ">=0.1.17 <1.4.1" + "name": "compliance-operator.v1.5.0", + "skipRange": ">=0.1.17 <1.5.0" } ] } diff --git a/config/manifests/bases/compliance-operator.clusterserviceversion.yaml b/config/manifests/bases/compliance-operator.clusterserviceversion.yaml index 2eb67f91e..4ec9a9ca2 100644 --- a/config/manifests/bases/compliance-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/compliance-operator.clusterserviceversion.yaml @@ -160,7 +160,7 @@ metadata: ] capabilities: Seamless Upgrades categories: Monitoring,Security - olm.skipRange: '>=0.1.17 <1.4.1' + olm.skipRange: '>=0.1.17 <1.5.0' operatorframework.io/cluster-monitoring: "true" operatorframework.io/suggested-namespace: openshift-compliance operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]' @@ -1557,5 +1557,5 @@ spec: provider: name: Red Hat Inc. url: www.redhat.com - replaces: compliance-operator.v1.4.0 - version: 1.4.1 + replaces: compliance-operator.v1.4.1 + version: 1.5.0 diff --git a/version.Makefile b/version.Makefile index ff332c839..455e5eefa 100644 --- a/version.Makefile +++ b/version.Makefile @@ -2,4 +2,4 @@ # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION?=1.4.1 \ No newline at end of file +VERSION?=1.5.0 \ No newline at end of file diff --git a/version/version.go b/version/version.go index 70012cb41..876fd67fb 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "1.4.1" + Version = "1.5.0" )