diff --git a/docs/bee/installation/build-from-source.md b/docs/bee/installation/build-from-source.md index 0e3a2768..908b5607 100644 --- a/docs/bee/installation/build-from-source.md +++ b/docs/bee/installation/build-from-source.md @@ -31,7 +31,7 @@ Prerequisites for installing direct from source are: 3. Checkout the required version: ```bash - git checkout v2.1.0 + git checkout v2.2.0 ``` 4. Build the binary: @@ -47,7 +47,7 @@ Prerequisites for installing direct from source are: ``` ``` - 2.1.0 + 2.2.0 ``` 6. (optional) Additionally, you may also like to move the Bee binary to somewhere in your `$PATH` diff --git a/docs/bee/installation/docker.md b/docs/bee/installation/docker.md index c49879a4..1e0d8105 100644 --- a/docs/bee/installation/docker.md +++ b/docs/bee/installation/docker.md @@ -306,7 +306,7 @@ Command breakdown: 1. **`-p 1634:1634`**: This maps port 1634 on all network interfaces of your host machine to port 1634 inside the container. This is used for P2P communication. -1. **`ethersphere/bee:2.1.0`**: This specifies the Docker image to use for the container. In this case, it is the `ethersphere/bee` image with the tag `2.1.0`. +1. **`ethersphere/bee:2.2.0`**: This specifies the Docker image to use for the container. In this case, it is the `ethersphere/bee` image with the tag `2.2.0`. 1. **`start --config /home/bee/bee.yml`**: This specifies the command to run inside the container. It starts the Bee node using the configuration file located at `/home/bee/bee.yml`. ::: @@ -324,7 +324,7 @@ If everything is set up correctly, you should see your Bee node listed: ```bash CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -e53aaa4e76ec ethersphere/bee:2.1.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp, bee-node +e53aaa4e76ec ethersphere/bee:2.2.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp, bee-node ``` And check the logs: @@ -497,14 +497,14 @@ cat ./node_01/bee.yml You can use the same Docker Compose configuration for all the node types. :::info -Note that we have specified the exact version number of the image using the 2.1.0 tag. It's recommended to always specify the exact version number you need using the version tag. You can find all available tags for Bee on [Docker Hub](https://hub.docker.com/r/ethersphere/bee/tags). +Note that we have specified the exact version number of the image using the 2.2.0 tag. It's recommended to always specify the exact version number you need using the version tag. You can find all available tags for Bee on [Docker Hub](https://hub.docker.com/r/ethersphere/bee/tags). ::: ```yml services: bee_01: container_name: bee-node_01 - image: ethersphere/bee:2.1.0 + image: ethersphere/bee:2.2.0 command: start --config /home/bee/bee.yml volumes: - ./node_01/.bee:/home/bee/.bee @@ -565,7 +565,7 @@ If we did everything properly we should see our node listed here: ```bash CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -e53aaa4e76ec ethersphere/bee:2.1.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_01 +e53aaa4e76ec ethersphere/bee:2.2.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_01 ``` Now let's check our logs: @@ -676,7 +676,7 @@ Here is the Docker compose configuration for running a hive of two Bee nodes: services: bee_01: container_name: bee-node_01 - image: ethersphere/bee:2.1.0 + image: ethersphere/bee:2.2.0 command: start --config /home/bee/bee.yml volumes: - ./node_01/.bee:/home/bee/.bee @@ -686,7 +686,7 @@ services: - 1634:1634 # p2p port bee_02: container_name: bee-node_02 - image: ethersphere/bee:2.1.0 + image: ethersphere/bee:2.2.0 command: start --config /home/bee/bee.yml volumes: - ./node_02/.bee:/home/bee/.bee @@ -720,8 +720,8 @@ docker ps ```shell CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -a62ec5143d30 ethersphere/bee:2.1.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_02 -a3496b9bb2c8 ethersphere/bee:2.1.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp bee-node_01 +a62ec5143d30 ethersphere/bee:2.2.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_02 +a3496b9bb2c8 ethersphere/bee:2.2.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp bee-node_01 ``` And we can also check the logs for each node: diff --git a/docs/bee/installation/install.md b/docs/bee/installation/install.md index 7368871d..debc2f24 100644 --- a/docs/bee/installation/install.md +++ b/docs/bee/installation/install.md @@ -142,9 +142,9 @@ Need to get 0 B/27.2 MB of archives. After this operation, 50.8 MB of additional disk space will be used. Selecting previously unselected package bee. (Reading database ... 82381 files and directories currently installed.) -Preparing to unpack .../archives/bee_2.1.0_amd64.deb ... -Unpacking bee (2.1.0) ... -Setting up bee (2.1.0) ... +Preparing to unpack .../archives/bee_2.2.0_amd64.deb ... +Unpacking bee (2.2.0) ... +Setting up bee (2.2.0) ... Logs: journalctl -f -u bee.service Config: /etc/bee/bee.yaml @@ -173,13 +173,13 @@ Use either of the following commands to run the script and install Bee: #### wget ```bash -wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.1.0 bash +wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.2.0 bash ``` #### curl ```bash -curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.1.0 bash +curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.2.0 bash ``` ### Build from source If neither of the above methods works for your system, you can see our guide for [building directly from source](/docs/bee/installation/build-from-source). @@ -767,7 +767,7 @@ bee version ``` ``` -2.1.0 +2.2.0 ``` Once the Bee node has been funded, the chequebook deployed, and postage stamp diff --git a/docs/bee/working-with-bee/bee-api.md b/docs/bee/working-with-bee/bee-api.md index 93e982f0..c039fd5c 100644 --- a/docs/bee/working-with-bee/bee-api.md +++ b/docs/bee/working-with-bee/bee-api.md @@ -506,5 +506,5 @@ If the `Time` value is much longer than 6 minutes then it likely means that the ## Debug API Removal Notice :::info -The Debug API endpoints have been merged into the Bee API in the Bee version 2.1.0 release, and will be fully removed in the 2.2.0 release. The [Debug API reference docs](/debug-api/) are still available until the 2.2.0 release for your reference. +The Debug API endpoints have been merged into the Bee API in the Bee version 2.2.0 release, and will be fully removed in the 2.2.0 release. The [Debug API reference docs](/debug-api/) are still available until the 2.2.0 release for your reference. ::: \ No newline at end of file