Skip to content

Commit 23ab2b6

Browse files
authored
(release): prep for v1.33.0 release (#43)
* (release): prep for v1.33.0 release Signed-off-by: everettraven <[email protected]> * update goreleaser to fix #36 Signed-off-by: everettraven <[email protected]> --------- Signed-off-by: everettraven <[email protected]>
1 parent d0bb0f7 commit 23ab2b6

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ docker_manifests:
6969
- "{{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-arm64"
7070
- "{{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-ppc64le"
7171
- "{{ .Env.IMAGE_REPO }}:{{ .Env.IMAGE_TAG }}-s390x"
72+
archives:
73+
- format: binary
74+
name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}"
7275
changelog:
7376
use: github-native
7477
skip: '{{ ne .Env.ENABLE_RELEASE_PIPELINE "true" }}'

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.32.0
7+
export IMAGE_VERSION = v1.33.0
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.32.0"
31+
ImageVersion = "v1.33.0"
3232
)

testdata/memcached-molecule-operator/Makefile

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

0 commit comments

Comments
 (0)