Skip to content

Commit 87d6d1f

Browse files
authored
prepping for v1.38.1 release (#147)
Signed-off-by: Adam D. Cornett <[email protected]>
1 parent 7094dd8 commit 87d6d1f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL = /bin/bash
44
# This value must be updated to the release tag of the most recent release, a change that must
55
# occur in the release commit. IMAGE_VERSION will be removed once each subproject that uses this
66
# version is moved to a separate repo and release process.
7-
export IMAGE_VERSION = v1.38.0
7+
export IMAGE_VERSION = v1.38.1
88
# Build-time variables to inject into binaries
99
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)
1010
export GIT_VERSION := $(shell git describe --dirty --tags --always)

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ var (
2828
// and release process, this variable will be removed.
2929

3030
// TODO: find a way to make this automated. For now manually update this before releases.
31-
ImageVersion = "v1.38.0"
31+
ImageVersion = "v1.38.1"
3232
)

testdata/memcached-molecule-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ ifeq (,$(shell which ansible-operator 2>/dev/null))
101101
@{ \
102102
set -e ;\
103103
mkdir -p $(dir $(ANSIBLE_OPERATOR)) ;\
104-
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v1.38.0/ansible-operator_$(OS)_$(ARCH) ;\
104+
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v1.38.1/ansible-operator_$(OS)_$(ARCH) ;\
105105
chmod +x $(ANSIBLE_OPERATOR) ;\
106106
}
107107
else

0 commit comments

Comments
 (0)