From 57c0e16db44d6e05a16d7970c9bcc3499947dbb0 Mon Sep 17 00:00:00 2001 From: Julian Arce <52429267+JuArce@users.noreply.github.com> Date: Wed, 18 Dec 2024 18:28:28 -0300 Subject: [PATCH] docs: update to v0.12.2 (#1651) --- Makefile | 2 +- batcher/Cargo.lock | 2 +- batcher/aligned/Cargo.toml | 2 +- docs/3_guides/1_SDK_how_to.md | 2 +- docs/operator_guides/0_running_an_operator.md | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index d5e218119..84647c96d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ CONFIG_FILE?=config-files/config.yaml export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE)) AGG_CONFIG_FILE?=config-files/config-aggregator.yaml -OPERATOR_VERSION=v0.12.1 +OPERATOR_VERSION=v0.12.2 ifeq ($(OS),Linux) BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux diff --git a/batcher/Cargo.lock b/batcher/Cargo.lock index 02ce4b217..9de1a9452 100644 --- a/batcher/Cargo.lock +++ b/batcher/Cargo.lock @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "aligned" -version = "0.12.1" +version = "0.12.2" dependencies = [ "aligned-sdk", "clap", diff --git a/batcher/aligned/Cargo.toml b/batcher/aligned/Cargo.toml index d3c8cb489..462f9ec50 100644 --- a/batcher/aligned/Cargo.toml +++ b/batcher/aligned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aligned" -version = "0.12.1" +version = "0.12.2" edition = "2021" [dependencies] diff --git a/docs/3_guides/1_SDK_how_to.md b/docs/3_guides/1_SDK_how_to.md index e6f52e4e9..0be228618 100644 --- a/docs/3_guides/1_SDK_how_to.md +++ b/docs/3_guides/1_SDK_how_to.md @@ -12,7 +12,7 @@ To use this SDK in your Rust project, add the following to your `Cargo.toml`: ```toml [dependencies] -aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.12.1" } +aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.12.2" } ``` To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index 7661e5b22..cd8d2912e 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -1,7 +1,7 @@ # Register as an Aligned operator in testnet > **CURRENT VERSION:** -> Aligned Operator [v0.12.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.12.1) +> Aligned Operator [v0.12.2](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.12.2) > **IMPORTANT:** > You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator. @@ -30,7 +30,7 @@ The list of supported strategies can be found [here](../3_guides/7_contract_addr To start with, clone the Aligned repository and move inside it ```bash -git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.12.1 +git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.12.2 cd aligned_layer ```