Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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.1
OPERATOR_VERSION=v0.17.0
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 crates/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 crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned"
version = "0.16.0"
version = "0.17.0"
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.16.1" }
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.17.0" }
```

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.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.16.1)
> Aligned Operator [v0.17.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.17.0)

> **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.1
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.17.0
cd aligned_layer
```

Expand Down
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.1
LATEST_RELEASE=v0.17.0
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.1
LATEST_RELEASE=v0.17.0
Loading