diff --git a/nodes/full-nodes/basic-setup.md b/nodes/full-nodes/basic-setup.md index 16d04915c..75ff60daa 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.33.0-linux-amd64.tar.gz +sudo tar -C /usr/local/bin -xzf lotus-1.33.1-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.33.0 +cd /usr/local/bin/lotus-1.33.1 ``` 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 4b981f773..e89baba7c 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.33.0 + v1.33.1 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.33.0 + git checkout v1.33.1 ``` 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.33.0 + v1.33.1 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.33.0 + git checkout v1.33.1 ``` 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.33.0 + v1.33.1 ``` 3. Using the value returned from the previous command, checkout to the latest release branch: ```shell - git checkout v1.33.0 + git checkout v1.33.1 ``` 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.33.0+mainnet+git.1ff3b360b + lotus version 1.33.1+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.33.0+calibnet+git.1ff3b360b + lotus version 1.33.1+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 b2d1e4bbd..17dda25b4 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.33.0+mainnet+git.ff88d8269` +You should see something like: `lotus version 1.33.1+mainnet+git.ff88d8269` {% endhint %} ***