From 8fe7730eb26a2ece6c86e54c6f9f1d99676c9da1 Mon Sep 17 00:00:00 2001 From: Tesshu Flower Date: Tue, 13 Aug 2024 11:54:00 -0400 Subject: [PATCH] Update version and channels for next release (v0.11.0) Signed-off-by: Tesshu Flower --- bundle.Dockerfile | 2 +- bundle/manifests/volsync.clusterserviceversion.yaml | 8 ++++---- bundle/metadata/annotations.yaml | 2 +- version.mk | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bundle.Dockerfile b/bundle.Dockerfile index 9210c76ac..fbbd0abfd 100644 --- a/bundle.Dockerfile +++ b/bundle.Dockerfile @@ -5,7 +5,7 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ LABEL operators.operatorframework.io.bundle.package.v1=volsync -LABEL operators.operatorframework.io.bundle.channels.v1=stable,stable-0.10 +LABEL operators.operatorframework.io.bundle.channels.v1=stable,stable-0.11 LABEL operators.operatorframework.io.bundle.channel.default.v1=stable LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.31.0 LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 diff --git a/bundle/manifests/volsync.clusterserviceversion.yaml b/bundle/manifests/volsync.clusterserviceversion.yaml index 8f2187f71..a86b55450 100644 --- a/bundle/manifests/volsync.clusterserviceversion.yaml +++ b/bundle/manifests/volsync.clusterserviceversion.yaml @@ -55,11 +55,11 @@ metadata: } ] capabilities: Basic Install - createdAt: "2024-07-18T10:12:42Z" - olm.skipRange: '>=0.4.0 <0.10.0' + createdAt: "2024-08-13T15:52:46Z" + olm.skipRange: '>=0.4.0 <0.11.0' operators.operatorframework.io/builder: operator-sdk-v1.31.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 - name: volsync.v0.10.0 + name: volsync.v0.11.0 namespace: placeholder spec: apiservicedefinitions: {} @@ -612,4 +612,4 @@ spec: relatedImages: - image: quay.io/backube/volsync:latest name: "" - version: 0.10.0 + version: 0.11.0 diff --git a/bundle/metadata/annotations.yaml b/bundle/metadata/annotations.yaml index 6e4fe0eac..4530aa772 100644 --- a/bundle/metadata/annotations.yaml +++ b/bundle/metadata/annotations.yaml @@ -4,7 +4,7 @@ annotations: operators.operatorframework.io.bundle.manifests.v1: manifests/ operators.operatorframework.io.bundle.metadata.v1: metadata/ operators.operatorframework.io.bundle.package.v1: volsync - operators.operatorframework.io.bundle.channels.v1: stable,stable-0.10 + operators.operatorframework.io.bundle.channels.v1: stable,stable-0.11 operators.operatorframework.io.bundle.channel.default.v1: stable operators.operatorframework.io.metrics.builder: operator-sdk-v1.31.0 operators.operatorframework.io.metrics.mediatype.v1: metrics+v1 diff --git a/version.mk b/version.mk index 962ad48cc..35ba284ce 100644 --- a/version.mk +++ b/version.mk @@ -9,11 +9,11 @@ # # Bundle Version being built right now and channels to use # -VERSION := 0.10.0 +VERSION := 0.11.0 # REPLACES_VERSION should be left empty for the first version in a new channel (See more info in Procedures.md) REPLACES_VERSION := OLM_SKIPRANGE := '>=0.4.0 <$(VERSION)' -CHANNELS := stable,stable-0.10 +CHANNELS := stable,stable-0.11 DEFAULT_CHANNEL := stable MIN_KUBE_VERSION := 1.20.0