Skip to content

Commit bfbe2a9

Browse files
authored
Merge pull request #678 from ethersphere/2-3-0-version-replace
Replace version number
2 parents 1d1700b + 3fa3458 commit bfbe2a9

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

docs/bee/installation/build-from-source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Prerequisites for installing direct from source are:
3131
3. Checkout the required version:
3232

3333
```bash
34-
git checkout v2.2.0
34+
git checkout v2.3.0
3535
```
3636

3737
4. Build the binary:
@@ -47,7 +47,7 @@ Prerequisites for installing direct from source are:
4747
```
4848

4949
```
50-
2.2.0
50+
2.3.0
5151
```
5252

5353
6. (optional) Additionally, you may also like to move the Bee binary to somewhere in your `$PATH`

docs/bee/installation/docker.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ docker run -d --name bee-node \
287287
-v "$(pwd)/bee.yml:/home/bee/bee.yml" \
288288
-p 127.0.0.1:1633:1633 \
289289
-p 1634:1634 \
290-
ethersphere/bee:2.2.0 start --config /home/bee/bee.yml
290+
ethersphere/bee:2.3.0 start --config /home/bee/bee.yml
291291
```
292292
:::info
293293
Command breakdown:
@@ -306,7 +306,7 @@ Command breakdown:
306306

307307
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.
308308

309-
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`.
309+
1. **`ethersphere/bee:2.3.0`**: This specifies the Docker image to use for the container. In this case, it is the `ethersphere/bee` image with the tag `2.3.0`.
310310

311311
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`.
312312
:::
@@ -324,7 +324,7 @@ If everything is set up correctly, you should see your Bee node listed:
324324
```bash
325325
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
326326
NAMES
327-
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
327+
e53aaa4e76ec ethersphere/bee:2.3.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
328328
```
329329

330330
And check the logs:
@@ -497,14 +497,14 @@ cat ./node_01/bee.yml
497497
You can use the same Docker Compose configuration for all the node types.
498498

499499
:::info
500-
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).
500+
Note that we have specified the exact version number of the image using the 2.3.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).
501501
:::
502502

503503
```yml
504504
services:
505505
bee_01:
506506
container_name: bee-node_01
507-
image: ethersphere/bee:2.2.0
507+
image: ethersphere/bee:2.3.0
508508
command: start --config /home/bee/bee.yml
509509
volumes:
510510
- ./node_01/.bee:/home/bee/.bee
@@ -565,7 +565,7 @@ If we did everything properly we should see our node listed here:
565565
```bash
566566
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
567567
NAMES
568-
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
568+
e53aaa4e76ec ethersphere/bee:2.3.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
569569
```
570570

571571
Now let's check our logs:
@@ -676,7 +676,7 @@ Here is the Docker compose configuration for running a hive of two Bee nodes:
676676
services:
677677
bee_01:
678678
container_name: bee-node_01
679-
image: ethersphere/bee:2.2.0
679+
image: ethersphere/bee:2.3.0
680680
command: start --config /home/bee/bee.yml
681681
volumes:
682682
- ./node_01/.bee:/home/bee/.bee
@@ -686,7 +686,7 @@ services:
686686
- 1634:1634 # p2p port
687687
bee_02:
688688
container_name: bee-node_02
689-
image: ethersphere/bee:2.2.0
689+
image: ethersphere/bee:2.3.0
690690
command: start --config /home/bee/bee.yml
691691
volumes:
692692
- ./node_02/.bee:/home/bee/.bee
@@ -720,8 +720,8 @@ docker ps
720720
```shell
721721
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
722722
NAMES
723-
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
724-
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
723+
a62ec5143d30 ethersphere/bee:2.3.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
724+
a3496b9bb2c8 ethersphere/bee:2.3.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
725725
```
726726

727727
And we can also check the logs for each node:

docs/bee/installation/install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ Need to get 0 B/27.2 MB of archives.
141141
After this operation, 50.8 MB of additional disk space will be used.
142142
Selecting previously unselected package bee.
143143
(Reading database ... 82381 files and directories currently installed.)
144-
Preparing to unpack .../archives/bee_2.2.0_amd64.deb ...
145-
Unpacking bee (2.2.0) ...
146-
Setting up bee (2.2.0) ...
144+
Preparing to unpack .../archives/bee_2.3.0_amd64.deb ...
145+
Unpacking bee (2.3.0) ...
146+
Setting up bee (2.3.0) ...
147147

148148
Logs: journalctl -f -u bee.service
149149
Config: /etc/bee/bee.yaml
@@ -172,13 +172,13 @@ Use either of the following commands to run the script and install Bee:
172172
#### wget
173173
174174
```bash
175-
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.2.0 bash
175+
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.3.0 bash
176176
```
177177
178178
#### curl
179179
180180
```bash
181-
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.2.0 bash
181+
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v2.3.0 bash
182182
```
183183
### Build from source
184184
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).
@@ -771,7 +771,7 @@ bee version
771771
```
772772
773773
```
774-
2.2.0
774+
2.3.0
775775
```
776776
777777
Once the Bee node has been funded, the chequebook deployed, and postage stamp

0 commit comments

Comments
 (0)