Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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.16.0
OPERATOR_VERSION=v0.16.1
EIGEN_SDK_GO_VERSION_DEVNET=v0.2.0-beta.1
EIGEN_SDK_GO_VERSION_TESTNET=v0.2.0-beta.1
EIGEN_SDK_GO_VERSION_MAINNET=v0.2.0-beta.1
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 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.16.0" }
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.16.1" }
```

To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the
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.16.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.16.0)
> Aligned Operator [v0.16.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.16.1)

> **IMPORTANT:**
> You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator.
Expand Down Expand Up @@ -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.16.0
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.16.1
cd aligned_layer
```

Expand Down
96 changes: 72 additions & 24 deletions examples/zkquiz/quiz/program/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 explorer/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ BATCH_TTL_MINUTES=5
SCHEDULED_BATCH_INTERVAL_MINUTES=10

# Latest aligned release that operators should be running
LATEST_RELEASE=v0.16.0
LATEST_RELEASE=v0.16.1
2 changes: 1 addition & 1 deletion explorer/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ BATCH_TTL_MINUTES=5
SCHEDULED_BATCH_INTERVAL_MINUTES=360

# Latest aligned release that operators should be running
LATEST_RELEASE=v0.16.0
LATEST_RELEASE=v0.16.1
2 changes: 1 addition & 1 deletion operator/merkle_tree/lib/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2024-04-17"
channel = "stable"
components = ["llvm-tools", "rustc-dev", "rustfmt", "rust-src"]
1 change: 1 addition & 0 deletions operator/risc_zero/lib/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[toolchain]
channel = "stable"
components = ["llvm-tools", "rustc-dev", "rustfmt", "rust-src"]
Loading