Skip to content

Commit 6c08f81

Browse files
authored
docs: update to v0.14.0 (#1755)
1 parent a61a817 commit 6c08f81

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CONFIG_FILE?=config-files/config.yaml
77
export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE))
88
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
99

10-
OPERATOR_VERSION=v0.13.0
10+
OPERATOR_VERSION=v0.14.0
1111
EIGEN_SDK_GO_VERSION_TESTNET=v0.2.0-beta.1
1212
EIGEN_SDK_GO_VERSION_MAINNET=v0.1.13
1313

@@ -31,7 +31,7 @@ endif
3131
ifeq ($(OS),Darwin)
3232
BUILD_OPERATOR = $(MAKE) build_operator_macos
3333
endif
34-
34+
3535
ifeq ($(ENVIRONMENT), devnet)
3636
GET_SDK_VERSION = $(MAKE) operator_set_eigen_sdk_go_version_devnet
3737
else ifeq ($(ENVIRONMENT), testnet)

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.13.0"
3+
version = "0.14.0"
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.13.0" }
15+
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.14.0" }
1616
```
1717

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

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.13.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.13.0)
4+
> Aligned Operator [v0.14.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.14.0)
55
66
> **IMPORTANT:**
77
> You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator.
@@ -30,7 +30,7 @@ The list of supported strategies can be found [here](../3_guides/7_contract_addr
3030
To start with, clone the Aligned repository and move inside it
3131

3232
```bash
33-
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.13.0
33+
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.14.0
3434
cd aligned_layer
3535
```
3636

explorer/.env.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ MAX_BATCH_SIZE=268435456 # 256 MiB
2727
BATCH_TTL_MINUTES=5
2828

2929
# Latest aligned release that operators should be running
30-
LATEST_RELEASE=v0.13.0
30+
LATEST_RELEASE=v0.14.0

explorer/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ TRACKER_API_URL=<tracker_api_url>
2525
BATCH_TTL_MINUTES=5
2626

2727
# Latest aligned release that operators should be running
28-
LATEST_RELEASE=v0.13.0
28+
LATEST_RELEASE=v0.14.0

0 commit comments

Comments
 (0)