From a4692301433dc8a07e47bd8a5cb866a6e4f36ae2 Mon Sep 17 00:00:00 2001 From: Adam Cornett Date: Mon, 17 Jun 2024 09:27:19 -0700 Subject: [PATCH] prepping for v1.34.3 release (#81) Signed-off-by: Adam D. Cornett --- Makefile | 2 +- internal/version/version.go | 2 +- testdata/memcached-molecule-operator/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b5ba475..fc2b9bc 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ SHELL = /bin/bash # This value must be updated to the release tag of the most recent release, a change that must # occur in the release commit. IMAGE_VERSION will be removed once each subproject that uses this # version is moved to a separate repo and release process. -export IMAGE_VERSION = v1.34.2 +export IMAGE_VERSION = v1.34.3 # Build-time variables to inject into binaries export SIMPLE_VERSION := $(shell (test "$(shell git describe --tags)" = "$(shell git describe --tags --abbrev=0)" && echo $(shell git describe --tags)) || echo $(shell git describe --tags --abbrev=0)+git) export GIT_VERSION := $(shell git describe --dirty --tags --always) diff --git a/internal/version/version.go b/internal/version/version.go index 3d1a89c..9c3a3e3 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -28,5 +28,5 @@ var ( // and release process, this variable will be removed. // TODO: find a way to make this automated. For now manually update this before releases. - ImageVersion = "v1.34.2" + ImageVersion = "v1.34.3" ) diff --git a/testdata/memcached-molecule-operator/Makefile b/testdata/memcached-molecule-operator/Makefile index d0cc947..08c3af5 100644 --- a/testdata/memcached-molecule-operator/Makefile +++ b/testdata/memcached-molecule-operator/Makefile @@ -97,7 +97,7 @@ ifeq (,$(shell which ansible-operator 2>/dev/null)) @{ \ set -e ;\ mkdir -p $(dir $(ANSIBLE_OPERATOR)) ;\ - curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v1.34.2/ansible-operator_$(OS)_$(ARCH) ;\ + curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v1.34.3/ansible-operator_$(OS)_$(ARCH) ;\ chmod +x $(ANSIBLE_OPERATOR) ;\ } else