Skip to content

Commit 7c563a3

Browse files
authored
docs: update to v0.10.2 (#1330)
1 parent 19ca180 commit 7c563a3

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OS := $(shell uname -s)
66
CONFIG_FILE?=config-files/config.yaml
77
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
88

9-
OPERATOR_VERSION=v0.10.1
9+
OPERATOR_VERSION=v0.10.2
1010

1111
ifeq ($(OS),Linux)
1212
BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux

batcher/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

batcher/aligned/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aligned"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
edition = "2021"
55

66
[dependencies]

docs/3_guides/1_SDK_how_to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To use this SDK in your Rust project, add the following to your `Cargo.toml`:
1212

1313
```toml
1414
[dependencies]
15-
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.10.1" }
15+
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.10.2" }
1616
```
1717

1818
To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the

docs/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* [Operator FAQ](operator_guides/1_operator_FAQ.md)
4141
* [Troubleshooting](operator_guides/2_troubleshooting.md)
4242
* Upgrading Guides
43-
* [Upgrading to v0.10.1](operator_guides/upgrading_guides/v0_10_1.md)
43+
* [Upgrading to v0.10.2](operator_guides/upgrading_guides/v0_10_2.md)
4444
* [Upgrading to v0.9.2](operator_guides/upgrading_guides/v0_9_2.md)
4545

4646
## Useful links

docs/operator_guides/0_running_an_operator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Register as an Aligned operator in testnet
22

33
> **CURRENT VERSION:**
4-
> Aligned Operator [v0.10.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.10.1)
4+
> Aligned Operator [v0.10.2](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.10.2)
55
66
> **IMPORTANT:**
77
> 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:
2626
To start with, clone the Aligned repository and move inside it
2727

2828
```bash
29-
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.10.1
29+
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.10.2
3030
cd aligned_layer
3131
```
3232

docs/operator_guides/upgrading_guides/v0_10_1.md renamed to docs/operator_guides/upgrading_guides/v0_10_2.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
# Upgrading to v0.10.1
1+
# Upgrading to v0.10.2
22

3-
This guide will walk you through the process of upgrading your Aligned Operator to v0.10.1.
3+
This guide will walk you through the process of upgrading your Aligned Operator to v0.10.2.
44

55
## Changes
66

77
### New Features
88

99
* feat(telemetry): Add url data to operator updates on telemetry service in [#1136](https://github.com/yetanotherco/aligned_layer/pull/1136)
1010
* fix: add panic catch on operator calling FFI in [#1196](https://github.com/yetanotherco/aligned_layer/pull/1196)
11-
11+
* refactor(operator): use url.Parse instead of regex for sending rpc information to telemetry service [#1327](https://github.com/yetanotherco/aligned_layer/pull/1327)
12+
* feat(operator): bump risc0 and sp1 versions in [#1324](https://github.com/yetanotherco/aligned_layer/pull/1324)
1213

1314
## How to upgrade
1415

@@ -49,7 +50,7 @@ To see the operator version, run:
4950
This will display the current version of the operator binary.
5051

5152
```
52-
Aligned Layer Node Operator version v0.10.1
53+
Aligned Layer Node Operator version v0.10.2
5354
```
5455

5556
### Step 4 - Restart the Operator

0 commit comments

Comments
 (0)