From 7e133c4461375b2677d7d31ae7605b44264b9b0a Mon Sep 17 00:00:00 2001 From: MauroFab Date: Fri, 11 Oct 2024 12:10:39 -0300 Subject: [PATCH 1/3] Bump --- Makefile | 2 +- batcher/aligned/Cargo.toml | 2 +- docs/3_guides/1_SDK_how_to.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bcc17b9376..588ba0a1bb 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ OS := $(shell uname -s) CONFIG_FILE?=config-files/config.yaml AGG_CONFIG_FILE?=config-files/config-aggregator.yaml -OPERATOR_VERSION=v0.8.0 +OPERATOR_VERSION=v0.9.0 ifeq ($(OS),Linux) BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux diff --git a/batcher/aligned/Cargo.toml b/batcher/aligned/Cargo.toml index 8f9a6a78a3..4b30b123a4 100644 --- a/batcher/aligned/Cargo.toml +++ b/batcher/aligned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aligned" -version = "0.8.0" +version = "0.9.0" edition = "2021" [dependencies] diff --git a/docs/3_guides/1_SDK_how_to.md b/docs/3_guides/1_SDK_how_to.md index 203005e99a..6b261c083e 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.6.0" } +aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.9.0" } ``` To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the From 9d669781db1c203ba2374fe18952401bb4e1da38 Mon Sep 17 00:00:00 2001 From: MauroFab Date: Fri, 11 Oct 2024 12:15:18 -0300 Subject: [PATCH 2/3] Bump operator on operator guide --- docs/operator_guides/0_running_an_operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index d73904b412..9e41f9a112 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.8.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.8.0) +> Aligned Operator [v0.9.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.9.0) > **IMPORTANT:** > You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator. From 8bc706e69352d0a53f1c7ee48709b6f437942a9e Mon Sep 17 00:00:00 2001 From: MauroFab Date: Fri, 11 Oct 2024 12:16:40 -0300 Subject: [PATCH 3/3] Bump missing line --- docs/operator_guides/0_running_an_operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index 9e41f9a112..bedeb67a6d 100644 --- a/docs/operator_guides/0_running_an_operator.md +++ b/docs/operator_guides/0_running_an_operator.md @@ -26,7 +26,7 @@ Minimum hardware requirements: To start with, clone the Aligned repository and move inside it ```bash -git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.7.3 +git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.9.0 cd aligned_layer ```