Skip to content

Commit 7a52ab0

Browse files
committed
bump version
1 parent 4ab59c0 commit 7a52ab0

File tree

6 files changed

+29
-28
lines changed

6 files changed

+29
-28
lines changed

docs/installation/build-from-source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ git describe --tags
3535
3) Checkout the required version:
3636

3737
```bash
38-
git checkout v0.6.1
38+
git checkout v0.6.2
3939
```
4040

4141
4) Build the binary:
@@ -51,7 +51,7 @@ dist/bee version
5151
```
5252

5353
```
54-
0.6.0
54+
0.6.2
5555
```
5656

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

docs/installation/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ docker pull ethersphere/bee:beta
7171
#### Specific Versions
7272

7373
```bash
74-
docker pull ethersphere/bee:0.6.0
74+
docker pull ethersphere/bee:0.6.2
7575
```
7676

7777
#### Edge
@@ -91,13 +91,13 @@ Configuration files for Bee and Bee Clef are provided to enable quick and easy i
9191
First, retrieve the current `docker-compose.yaml` file.
9292

9393
```bash
94-
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.6.1/packaging/docker/docker-compose.yml
94+
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.6.2/packaging/docker/docker-compose.yml
9595
```
9696

9797
Next, create a `.env` file using the example file provided. This file will be responsible for storing configuration and secrets for our Bee and Bee Clef applications.
9898

9999
```bash
100-
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.6.1/packaging/docker/env -O .env
100+
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.6.2/packaging/docker/env -O .env
101101
```
102102

103103
There are some important configuration parameters which must be set in order for our projects to work. To affect configuration in the `.env` file, we first remove the `#` at the beginning of the line and then change the value after `=` to our desired config.

docs/installation/install.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -158,24 +158,24 @@ Next, install Bee itself, simply choose the appropriate command from the ones be
158158
#### AMD64
159159

160160
```bash
161-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_amd64.deb
162-
sudo dpkg -i bee_0.6.0_amd64.deb
161+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_amd64.deb
162+
sudo dpkg -i bee_0.6.2_amd64.deb
163163
```
164164

165165
#### ARM (Raspberry Pi)
166166

167167
##### ARMv7
168168

169169
```bash
170-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_armv7.deb
171-
sudo dpkg -i bee_0.6.0_armv7.deb
170+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_armv7.deb
171+
sudo dpkg -i bee_0.6.2_armv7.deb
172172
```
173173

174174
##### ARM64
175175

176176
```bash
177-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_arm64.deb
178-
sudo dpkg -i bee_0.6.0_arm64.deb
177+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_arm64.deb
178+
sudo dpkg -i bee_0.6.2_arm64.deb
179179
```
180180
</TabItem>
181181
<TabItem value="centos">
@@ -185,24 +185,24 @@ sudo dpkg -i bee_0.6.0_arm64.deb
185185
#### AMD64
186186

187187
```bash
188-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_amd64.rpm
189-
sudo rpm -i bee_0.6.0_amd64.rpm
188+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_amd64.rpm
189+
sudo rpm -i bee_0.6.2_amd64.rpm
190190
```
191191

192192
#### ARM (Raspberry Pi)
193193

194194
##### ARMv7
195195

196196
```bash
197-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_armv7.rpm
198-
sudo rpm -i bee_0.6.0_armv7.rpm
197+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_armv7.rpm
198+
sudo rpm -i bee_0.6.2_armv7.rpm
199199
```
200200

201201
##### ARM64
202202

203203
```bash
204-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_arm64.rpm
205-
sudo rpm -i bee_0.6.0_arm64.rpm
204+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_arm64.rpm
205+
sudo rpm -i bee_0.6.2_arm64.rpm
206206
```
207207
</TabItem>
208208
<TabItem value="macos">
@@ -284,6 +284,7 @@ Then configure your node, including your p2p port (usually 1634).
284284
```yaml
285285
nat-addr: "123.123.123.123:1634"
286286
```
287+
287288
#### Debug API
288289

289290
For a new installation of Bee, the debug API endpoint is not yet exposed for security reasons. To enable the debug API endpoints, set `debug-api-enable` to `true` in your [configuration file](/docs/working-with-bee/configuration) and restart your Bee service.

docs/installation/manual.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ To install the binary using our quick install script, run either one of the foll
1717

1818
#### wget
1919
```bash
20-
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.6.1 bash
20+
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.6.2 bash
2121
```
2222

2323
#### curl
2424
```bash
25-
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.6.1 bash
25+
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.6.2 bash
2626
```
2727

2828
### Run Bee
@@ -34,7 +34,7 @@ bee version
3434
```
3535

3636
```
37-
0.6.0
37+
0.6.2
3838
```
3939

4040
Now your Bee node is installed, you can fund your node with gBZZ join us in the swarm! 🐝 🐝 🐝 🐝 🐝

docs/installation/rasp-bee-ry-pi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ We must install Bee Clef before Bee. To do so, open the browser (the 🌐 icon)
5353
Click `Install > Bee Clef` and scroll down to find the installation commands for Bee Clef **ARM (Raspberry Pi) ARMv7**. These should look something like:
5454

5555
```sh
56-
wget https://github.com/ethersphere/bee/releases/download/v0.6.1/bee_0.6.0_armv7.deb
57-
sudo dpkg -i bee_0.6.0_armv7.deb
56+
wget https://github.com/ethersphere/bee/releases/download/v0.6.2/bee_0.6.2_armv7.deb
57+
sudo dpkg -i bee_0.6.2_armv7.deb
5858
```
5959

6060
Click `copy` on the right hand side of the box containing the instructions, then go back to your terminal on your Raspberry Pi, right click with your mouse and paste in the commands. The first one will execute immediately because there is a 'newline' or 'enter' character.
@@ -131,7 +131,7 @@ Your output should looks something like this:
131131

132132
```bash
133133
-rw-r--r-- 1 pi pi 3523 Mar 4 22:47 .bashrc
134-
-rw-r--r-- 1 pi pi 10787806 Mar 23 08:18 bee_0.6.0_armv7.deb
134+
-rw-r--r-- 1 pi pi 10787806 Mar 23 08:18 bee_0.6.2_armv7.deb
135135
-rw-r--r-- 1 pi pi 10473282 Feb 24 18:00 bee-clef_0.4.12_armv7.deb
136136
drwxr-xr-x 2 pi pi 4096 Mar 4 22:57 Bookshelf
137137
```
@@ -141,7 +141,7 @@ For more information, you can use the `man` utility to read the manual. Type `ma
141141
Now, let's use the `rm` programme to remove the clutter and delete the `.deb` files we no longer need.
142142

143143
```bash
144-
rm bee_0.6.0_armv7.deb
144+
rm bee_0.6.2_armv7.deb
145145
```
146146

147147
The `rm` programme gives no output, so let's check it's dissapeared by checking the contents of the directory. This time we will also you the 'pipe' command, which passes the output of one command to the next, and the `grep` command which searches through the output and only prints lines that match the pattern.

docs/working-with-bee/upgrade.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Bee sure to [backup](/docs/working-with-bee/backups) your clef key material and
1212

1313
### Upgrading from 0.5.x Series to 0.6.x
1414

15-
Bee 0.6.0 contains a few breaking changes which mean a database migration must take place. We also intoduce [postage stamps](/docs/access-the-swarm/keep-your-data-alive) which must be attached to chunks of data so that they will be retained in the Swarm network.
15+
Bee 0.6.2 contains a few breaking changes which mean a database migration must take place. We also intoduce [postage stamps](/docs/access-the-swarm/keep-your-data-alive) which must be attached to chunks of data so that they will be retained in the Swarm network.
1616

1717
:::info
1818
Please take note that nodes which deployed their chequebook with bee v0.5.0 will have to be started with the --transaction TXHASH flag where TXHASH is any Ethereum transaction on goerli network sent from the bee node's Ethereum address. The hash of the chequebook deployment transaction can be used for this and can be looked up on etherscan. For nodes which first started with v0.5.1 or higher no action is necessary, as their chequebook deployment transaction will be automatically picked-up by the Bee node.
1919
:::
2020

21-
As part of these changes, if you have any **locally pinned content**, this must be manually migrated to the new data structure expected by the network of 0.6.0 clients, see below for information on how to proceed.
21+
As part of these changes, if you have any **locally pinned content**, this must be manually migrated to the new data structure expected by the network of 0.6.2 clients, see below for information on how to proceed.
2222

2323
If you *do not* have any locally pinned content, your migration will be automatic and your update will proceed as normal.
2424

@@ -44,7 +44,7 @@ To update **without pinned content:**
4444
4. Adjust your configuration. Several configuration parameters have changed in 0.6.x - If you wish to continue running as a full node, you must set the new `full-node` flag to `true`. check out the [configuration](/docs/working-with-bee/configuration) guide for more info on how to update your configuration.
4545
5. Restart your node.
4646

47-
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.0 or later.
47+
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.2 or later.
4848

4949
#### Manual Migration Procedure
5050

@@ -56,7 +56,7 @@ Your Bee should start up as normal, and begin to connect to other Bees that are
5656
6. Adjust your configuration. Several configuration parameters have changed in 0.6.x - If you wish to continue running as a full node, you must set the new `full-node` flag to `true`. check out the [configuration](/docs/working-with-bee/configuration) guide for more info on how to update your configuration.
5757
7. Restart your node.
5858

59-
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.0 or later.
59+
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.2 or later.
6060

6161
## Upgrade Procedure
6262

0 commit comments

Comments
 (0)