From 04ce69dec62385e622c9f76d1078dc1513f7ab03 Mon Sep 17 00:00:00 2001 From: Nicolas Rampoldi <58613770+NicolasRampoldi@users.noreply.github.com> Date: Tue, 2 Jul 2024 18:39:30 -0300 Subject: [PATCH] chore: bump operator version (#559) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5d5600f2d..32f389810 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ OS := $(shell uname -s) CONFIG_FILE?=config-files/config.yaml AGG_CONFIG_FILE?=config-files/config-aggregator.yaml -OPERATOR_VERSION=v0.1.6 +OPERATOR_VERSION=v0.2.1 ifeq ($(OS),Linux) BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux @@ -415,7 +415,7 @@ build_binaries: @go build -o ./aggregator/build/aligned-aggregator ./aggregator/cmd/main.go @echo "Aggregator built into /aggregator/build/aligned-aggregator" @echo "Building aligned layer operator..." - @go build -o ./operator/build/aligned-operator ./operator/cmd/main.go + @go build -ldflags "-X main.Version=$(OPERATOR_VERSION)" -o ./operator/build/aligned-operator ./operator/cmd/main.go @echo "Aligned layer operator built into /operator/build/aligned-operator" __SP1_FFI__: ##