From f5a0f6d6b03d4e0e0db5a3db4db6a5e51dde1035 Mon Sep 17 00:00:00 2001 From: Yeray Borges Date: Mon, 25 Nov 2024 17:59:25 +0000 Subject: [PATCH] Next is 1.1.2 --- Makefile | 2 +- .../bases/wildfly-operator.clusterserviceversion.yaml | 8 ++++---- version/version.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index e7cef4a8..613ae468 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - 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.1.1 +VERSION ?= 1.1.2 # The higher Go version expected to be used REQUIRED_GO_MAJOR_VERSION := 1 diff --git a/config/manifests/bases/wildfly-operator.clusterserviceversion.yaml b/config/manifests/bases/wildfly-operator.clusterserviceversion.yaml index 847a9a7b..edc7cde1 100644 --- a/config/manifests/bases/wildfly-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/wildfly-operator.clusterserviceversion.yaml @@ -19,14 +19,14 @@ metadata: capabilities: Seamless Upgrades categories: Application Runtime certified: "false" - containerImage: quay.io/wildfly/wildfly-operator:1.1.1 + containerImage: quay.io/wildfly/wildfly-operator:1.1.2 createdAt: "2024-05-10T00:00:00Z" description: Operator that deploys and manages Java applications running on WildFly. operators.operatorframework.io/builder: operator-sdk-v1.25.4 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 repository: https://github.com/wildfly/wildfly-operator support: WildFlyServer - name: wildfly-operator.v1.1.1 + name: wildfly-operator.v1.1.2 namespace: placeholder spec: customresourcedefinitions: @@ -382,8 +382,8 @@ spec: minKubeVersion: 1.25.0 provider: name: WildFly - replaces: wildfly-operator.v1.1.0 + replaces: wildfly-operator.v1.1.1 selector: matchLabels: operated-by: wildfly-operator - version: 1.1.1 + version: 1.1.2 diff --git a/version/version.go b/version/version.go index b8be542a..f19503ed 100644 --- a/version/version.go +++ b/version/version.go @@ -2,5 +2,5 @@ package version var ( // Version represents the software version of the WildFly Operator - Version = "1.1.1" + Version = "1.1.2" )