diff --git a/Makefile b/Makefile index 6b7147db5..9244ab7dc 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.10.1 +OPERATOR_VERSION=v0.10.2 ifeq ($(OS),Linux) BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux diff --git a/batcher/Cargo.lock b/batcher/Cargo.lock index e0b4494f4..79163ebb1 100644 --- a/batcher/Cargo.lock +++ b/batcher/Cargo.lock @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "aligned" -version = "0.10.1" +version = "0.10.2" dependencies = [ "aligned-sdk", "clap", diff --git a/batcher/aligned/Cargo.toml b/batcher/aligned/Cargo.toml index 721684336..f249aa0d3 100644 --- a/batcher/aligned/Cargo.toml +++ b/batcher/aligned/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aligned" -version = "0.10.1" +version = "0.10.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 4bb918c09..2ac4b8837 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.10.1" } +aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.10.2" } ``` To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 2ed0cf932..9a5c69d91 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -40,7 +40,7 @@ * [Operator FAQ](operator_guides/1_operator_FAQ.md) * [Troubleshooting](operator_guides/2_troubleshooting.md) * Upgrading Guides - * [Upgrading to v0.10.1](operator_guides/upgrading_guides/v0_10_1.md) + * [Upgrading to v0.10.2](operator_guides/upgrading_guides/v0_10_2.md) * [Upgrading to v0.9.2](operator_guides/upgrading_guides/v0_9_2.md) ## Useful links diff --git a/docs/operator_guides/0_running_an_operator.md b/docs/operator_guides/0_running_an_operator.md index 699af3fa1..40594bcf0 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.10.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.10.1) +> Aligned Operator [v0.10.2](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.10.2) > **IMPORTANT:** > You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator. @@ -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.10.1 +git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.10.2 cd aligned_layer ``` diff --git a/docs/operator_guides/upgrading_guides/v0_10_1.md b/docs/operator_guides/upgrading_guides/v0_10_2.md similarity index 77% rename from docs/operator_guides/upgrading_guides/v0_10_1.md rename to docs/operator_guides/upgrading_guides/v0_10_2.md index e6d843850..b3ea4c595 100644 --- a/docs/operator_guides/upgrading_guides/v0_10_1.md +++ b/docs/operator_guides/upgrading_guides/v0_10_2.md @@ -1,6 +1,6 @@ -# Upgrading to v0.10.1 +# Upgrading to v0.10.2 -This guide will walk you through the process of upgrading your Aligned Operator to v0.10.1. +This guide will walk you through the process of upgrading your Aligned Operator to v0.10.2. ## Changes @@ -8,7 +8,8 @@ This guide will walk you through the process of upgrading your Aligned Operator * feat(telemetry): Add url data to operator updates on telemetry service in [#1136](https://github.com/yetanotherco/aligned_layer/pull/1136) * fix: add panic catch on operator calling FFI in [#1196](https://github.com/yetanotherco/aligned_layer/pull/1196) - +* refactor(operator): use url.Parse instead of regex for sending rpc information to telemetry service [#1327](https://github.com/yetanotherco/aligned_layer/pull/1327) +* feat(operator): bump risc0 and sp1 versions in [#1324](https://github.com/yetanotherco/aligned_layer/pull/1324) ## How to upgrade @@ -49,7 +50,7 @@ To see the operator version, run: This will display the current version of the operator binary. ``` -Aligned Layer Node Operator version v0.10.1 +Aligned Layer Node Operator version v0.10.2 ``` ### Step 4 - Restart the Operator