Skip to content

Commit

Permalink
docs: update to v0.10.2 (#1330)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuArce authored Oct 25, 2024
1 parent 19ca180 commit 7c563a3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion batcher/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion batcher/aligned/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned"
version = "0.10.1"
version = "0.10.2"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion docs/3_guides/1_SDK_how_to.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/operator_guides/0_running_an_operator.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# 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

### New Features

* 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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7c563a3

Please sign in to comment.