Skip to content

Commit 23f2d52

Browse files
authored
Merge pull request #339 from availproject/staging
Node and LC version upgrades
2 parents 4c47367 + 8d6cd89 commit 23f2d52

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

pages/docs/networks.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ mainnet as closely as possible.
4949
| **RPC Endpoint** | [<ins>https://turing-rpc.avail.so/rpc</ins>](https://turing-rpc.avail.so/rpc) | [<ins>https://goldberg.avail.tools/api</ins>](https://goldberg.avail.tools/api) |
5050
| **WS Endpoint** | [<ins>wss://turing-rpc.avail.so/ws</ins>](wss://turing-rpc.avail.so/ws) | [<ins>wss://goldberg.avail.tools/ws</ins>](wss://goldberg.avail.tools/ws) |
5151
| **Chain Spec** | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.turing.chain.spec.raw.json) | [<ins>chainspec.raw.json</ins>](https://github.com/availproject/avail/blob/main/misc/genesis/testnet.goldberg.chain.raw.json) |
52-
| **Node Version** | [<ins>v2.1.4</ins>](https://github.com/availproject/avail/releases/tag/v2.2.2.0-rc1) | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) |
53-
| **Light Client Version** | [<ins>v1.8.1</ins>](https://github.com/availproject/avail-light/releases/tag/v1.8.1) | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) |
52+
| **Node Version** | [<ins>v2.1.5</ins>](https://github.com/availproject/avail/releases/tag/v2.2.3.0-rc1) | [<ins>v1.10.0.0</ins>](https://github.com/availproject/avail/releases/tag/v1.10.0.0) |
53+
| **Light Client Version** | [<ins>v1.9.0</ins>](https://github.com/availproject/avail-light/releases/tag/v1.9.0) | [<ins>v1.7.6</ins>](https://github.com/availproject/avail-light/releases/tag/v1.7.6) |
5454

5555
## Alternate Endpoints
5656

pages/docs/operate-a-node/become-a-validator/0010-basics.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before trying anything, make sure that you fully read the chapter first before d
3131

3232
## Installation & Setup
3333

34-
Our first step is to obtain the prebuilt binary for Avail Node. [We offer a wide range of prebuilds](https://github.com/availproject/avail/releases/tag/v2.2.2.0-rc1), but in case you don't see your Linux flavor or architecture here, head to the FAQ chapter to learn how to build your own executable.
34+
Our first step is to obtain the prebuilt binary for Avail Node. [We offer a wide range of prebuilds](https://github.com/availproject/avail/releases/tag/v2.2.3.0-rc1), but in case you don't see your Linux flavor or architecture here, head to the FAQ chapter to learn how to build your own executable.
3535

3636
Once you have found your OS (or picked the generic one), execute the given command to obtain the needed Avail Node binary.
3737

pages/docs/operate-a-node/become-a-validator/0020-simple-deployment.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ Please note that the Avail node underwent major breaking changes while making up
109109
</Callout>
110110

111111
```bash
112-
# Obtaning v2.2.2.0-rc1 for Ubuntu 22.04
112+
# Obtaning v2.2.3.0-rc1 for Ubuntu 22.04
113113
# wget is a command-line utility for downloading files from the internet.
114-
wget https://github.com/availproject/avail/releases/download/v2.2.2.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz
114+
wget https://github.com/availproject/avail/releases/download/v2.2.3.0-rc1/x86_64-ubuntu-2204-avail-node.tar.gz
115115

116116
# tar is a command-line utility for working with tarballs, compressed or uncompressed archives containing one or more files or directories.
117117
# The -x option extracts files from an archive, and the -f option specifies the archive file. When used together as tar -xf, it removes the contents of the specified archive file.

pages/docs/operate-a-node/run-a-full-node/full-node.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ There are two main ways of running an Avail node:
2121
1. Go to the [Avail node GitHub releases page](https://github.com/availproject/avail/releases/).
2222
There you will see a lot of pre-built binaries for each version of the Avail node.
2323

24-
2. Please download the binary suitable from your system, of the latest recommended version, which as of now is `v2.2.2.0-rc1`.
24+
2. Please download the binary suitable from your system, of the latest recommended version, which as of now is `v2.2.3.0-rc1`.
2525
You can do this using the GUI or by running the following command in your terminal:
2626

2727
```bash
28-
curl -L -O https://github.com/availproject/avail/releases/download/v2.2.2.0-rc1/<YOUR-SYSTEM-SPECIFIC-BINARY>.tar.gz
28+
curl -L -O https://github.com/availproject/avail/releases/download/v2.2.3.0-rc1/<YOUR-SYSTEM-SPECIFIC-BINARY>.tar.gz
2929
```
3030
3. Extract the downloaded file by opening a terminal in the location of the downloaded file and using the following command:
3131

@@ -257,7 +257,7 @@ To download and run an Avail node using Docker:
257257
1. Simply run the following command in your terminal:
258258
259259
```bash
260-
docker run --restart=on-failure -d -v /root/avail/node-data:/da/node-data -p 9944:9944 -p 30333:30333 docker.io/availj/avail:v2.2.2.0-rc1 --chain turing -d ./output --name a-random-name
260+
docker run --restart=on-failure -d -v /root/avail/node-data:/da/node-data -p 9944:9944 -p 30333:30333 docker.io/availj/avail:v2.2.3.0-rc1 --chain turing -d ./output --name a-random-name
261261
```
262262
- -d runs the container in the background
263263
- -v mounts a volume into the container

pages/docs/operate-a-node/run-a-light-client/0010-light-client.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can find the latest release binary in the [`avail-light`](https://github.com
3131
<Callout type="info">
3232
RECOMMENDED VERSION <br/>
3333
You can find the latest release of the Avail LC from [our Github repo](https://github.com/availproject/avail-light). For now though we recommend most users to
34-
run [`v1.8.1`](https://github.com/availproject/avail-light/releases/tag/v1.8.1) of the Avail light client for maximal network support. <br/>
34+
run [`v1.9.0`](https://github.com/availproject/avail-light/releases/tag/v1.9.0) of the Avail light client for maximal network support. <br/>
3535
We will keep this recommendation updated.
3636
</Callout>
3737

@@ -126,7 +126,7 @@ using `availup`, you can always check out [our Github repo](https://github.com/a
126126
You can also download and run a pre-built binary of the Avail light client.
127127
To do so:
128128

129-
1. Download the [recommended version of the binary](https://github.com/availproject/avail-light/releases/tag/v1.8.1) that is compatible with your operating system.
129+
1. Download the [recommended version of the binary](https://github.com/availproject/avail-light/releases/tag/v1.9.0) that is compatible with your operating system.
130130

131131
2. Move the `.tar` file into a convenient directory and extract it to reveal the `avail-light` binary.
132132

@@ -224,7 +224,7 @@ using `availup`, you can always check out [our Github repo](https://github.com/a
224224
```sh
225225
git clone https://github.com/availproject/avail-light.git
226226
cd avail-light
227-
git checkout tags/v1.8.1
227+
git checkout tags/v1.9.0
228228
```
229229

230230
2. Make sure your terminal is in the `avail-light` directory. Create a compiled build by running:
@@ -287,7 +287,7 @@ instructions on how to run the Avail light client natively on Windows without ha
287287

288288
<Tabs.Tab>
289289

290-
1. Go to the [releases page of the Avail light client repo](https://github.com/availproject/avail-light/releases/tag/v1.8.1), and download the
290+
1. Go to the [releases page of the Avail light client repo](https://github.com/availproject/avail-light/releases/tag/v1.9.0), and download the
291291
`avail-light-windows-runner.zip` file.
292292

293293
2. Right click the downloaded file and extract it to a convenient location.

pages/docs/operate-a-node/run-a-light-client/light-client-api-reference.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ async fn main() {
531531
<summary> Sample Response:</summary>
532532
```json
533533
{
534-
"version":"v1.8.1",
534+
"version":"v1.9.0",
535535
"network_version":"1.10"
536536
}
537537
```

0 commit comments

Comments
 (0)