From 2501828b48bca37c60dddf20c92c6e0bb60dce9e Mon Sep 17 00:00:00 2001 From: barbaraperic Date: Tue, 24 Jun 2025 13:49:47 +0000 Subject: [PATCH] Chore: update Lotus version references to 1.33.0 --- nodes/full-nodes/basic-setup.md | 4 ++-- nodes/lite-nodes/spin-up-a-lite-node.md | 16 ++++++++-------- storage-providers/pdp/install-and-run-lotus.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/nodes/full-nodes/basic-setup.md b/nodes/full-nodes/basic-setup.md index a33946856..16d04915c 100644 --- a/nodes/full-nodes/basic-setup.md +++ b/nodes/full-nodes/basic-setup.md @@ -12,13 +12,13 @@ To install Lotus on your computer, follow these steps: 2. Once you have downloaded the binary file, extract the contents to a directory of your choice. For example, if you are using Linux, you can extract the contents to the `/usr/local/bin directory` by running the command: ```sh -sudo tar -C /usr/local/bin -xzf lotus-1.32.3-linux-amd64.tar.gz +sudo tar -C /usr/local/bin -xzf lotus-1.33.0-linux-amd64.tar.gz ``` 3. After extracting the contents, navigate to the `lotus` directory in your terminal. For example, if you extracted the contents to `/usr/local/bin`, you can navigate to the lotus directory by running the command: ```sh -cd /usr/local/bin/lotus-1.32.3 +cd /usr/local/bin/lotus-1.33.0 ``` 4. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command: diff --git a/nodes/lite-nodes/spin-up-a-lite-node.md b/nodes/lite-nodes/spin-up-a-lite-node.md index f6def03d2..4b981f773 100644 --- a/nodes/lite-nodes/spin-up-a-lite-node.md +++ b/nodes/lite-nodes/spin-up-a-lite-node.md @@ -73,12 +73,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.32.3 + v1.33.0 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.32.3 + git checkout v1.33.0 ``` 4. Done! You can move on to the [Build](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary) section. {% endtab %} @@ -99,12 +99,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.32.3 + v1.33.0 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.32.3 + git checkout v1.33.0 ``` 4. Create the necessary environment variables to allow Lotus to run on M1 architecture: @@ -132,12 +132,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps. This should output something like: ```output - v1.32.3 + v1.33.0 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.32.3 + git checkout v1.33.0 ``` 4. If your processor was released later than an AMD Zen or Intel Ice Lake CPU, enable SHA extensions by adding these two environment variables. If in doubt, ignore this command and move on to [the next section](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary). @@ -175,7 +175,7 @@ The last thing we need to do to get our node setup is to build the package. The This will output something like: ```plaintext - lotus version 1.32.3+mainnet+git.1ff3b360b + lotus version 1.33.0+mainnet+git.1ff3b360b ``` {% endtab %} @@ -200,7 +200,7 @@ The last thing we need to do to get our node setup is to build the package. The This will output something like: ```plaintext - lotus version 1.32.3+calibnet+git.1ff3b360b + lotus version 1.33.0+calibnet+git.1ff3b360b ``` {% endtab %} {% endtabs %} diff --git a/storage-providers/pdp/install-and-run-lotus.md b/storage-providers/pdp/install-and-run-lotus.md index 2b1d1b909..b2d1e4bbd 100644 --- a/storage-providers/pdp/install-and-run-lotus.md +++ b/storage-providers/pdp/install-and-run-lotus.md @@ -35,7 +35,7 @@ lotus --version ``` {% hint style="success" %} -You should see something like: `lotus version 1.32.3+mainnet+git.ff88d8269` +You should see something like: `lotus version 1.33.0+mainnet+git.ff88d8269` {% endhint %} ***