From b309214bc68d4f72c0231f952c7c54535a4cc87f Mon Sep 17 00:00:00 2001 From: JuArce <52429267+JuArce@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:40:53 -0300 Subject: [PATCH 1/2] chore: install aligned form latest t ag --- batcher/aligned/install_aligned.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/batcher/aligned/install_aligned.sh b/batcher/aligned/install_aligned.sh index c2043cbf3..c81598d6e 100755 --- a/batcher/aligned/install_aligned.sh +++ b/batcher/aligned/install_aligned.sh @@ -8,14 +8,12 @@ BASE_DIR=$HOME ALIGNED_DIR="${ALIGNED_DIR-"$BASE_DIR/.aligned"}" ALIGNED_BIN_DIR="$ALIGNED_DIR/bin" ALIGNED_BIN_PATH="$ALIGNED_BIN_DIR/aligned" -#CURRENT_TAG=$(curl -s -L \ -# -H "Accept: application/vnd.github+json" \ -# -H "X-GitHub-Api-Version: 2022-11-28" \ -# https://api.github.com/repos/yetanotherco/aligned_layer/releases/latest \ -# | grep '"tag_name":' | awk -F'"' '{print $4}') -CURRENT_TAG=v0.6.0 +CURRENT_TAG=$(curl -s -L \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/yetanotherco/aligned_layer/releases/latest \ + | grep '"tag_name":' | awk -F'"' '{print $4}') RELEASE_URL="https://github.com/yetanotherco/aligned_layer/releases/download/$CURRENT_TAG/" - ARCH=$(uname -m) if [ "$ARCH" == "x86_64" ]; then From 07e034acf2aec3dce7bfd01bd5f80732a72a8459 Mon Sep 17 00:00:00 2001 From: JuArce <52429267+JuArce@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:44:47 -0300 Subject: [PATCH 2/2] chore: update OPERATOR_VERSION --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ccf5b2d1a..37f388ab9 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.7.3 +OPERATOR_VERSION=v0.8.0 ifeq ($(OS),Linux) BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux