Skip to content

Commit ebd1712

Browse files
authored
V0.5.9 dev (#170)
* update discord link * merge master * bump version * update configuration * update openapi * improve config * remove mattermost * remove mystery = * update default config values * improve quick start * improve bee-clef tabs * improve quick start * improve ens * bump version #2
1 parent 6df297a commit ebd1712

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

docs/getting-started/host-your-website-using-ENS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,24 @@ In order to resolve ENS names using your API endpoints, you must specify a valid
1717
bee start --resolver-options "https://cloudflare-eth.com"
1818
```
1919

20+
If specifying using your `bee.yaml` configuration file, the syntax is as follows.
21+
22+
```bash
23+
resolver-options: [ "https://cloudflare-eth.com" ]
24+
```
25+
26+
Once you have restarted your node, you should be able to see the Swarm homepage at:
27+
28+
[http://localhost:1633/bzz/swarm.eth/](http://localhost:1633/bzz/swarm.eth/)
29+
2030
:::info
2131
Use the `resolver-options` flag to point the bee resolver to any ENS compatible smart-contract on any EVM compatible chain
2232
:::
2333
:::warn
2434
Make sure you trust the gateway you are interacting with! To ensure that you are retrieving the correct content, run your own ENS resolver and Bee node.
2535
:::
36+
37+
2638
### Link an ENS domain to a website.
2739

2840
First we will need to upload the website assets to Swarm in order to

docs/installation/build-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dist/bee version
4747
```
4848

4949
```
50-
0.5.2
50+
0.5.3
5151
```
5252

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

docs/installation/docker.md

Lines changed: 1 addition & 1 deletion
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.5.2
74+
docker pull ethersphere/bee:0.5.3
7575
```
7676

7777
#### Edge

docs/installation/quick-start.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,24 +50,24 @@ Follow post install guide in terminal for initial configuration and how to start
5050
#### AMD64
5151

5252
```bash
53-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_amd64.deb
54-
sudo dpkg -i bee_0.5.2_amd64.deb
53+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_amd64.deb
54+
sudo dpkg -i bee_0.5.3_amd64.deb
5555
```
5656

5757
#### ARM (Raspberry Pi)
5858

5959
##### ARMv7
6060

6161
```bash
62-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_armv7.deb
63-
sudo dpkg -i bee_0.5.2_armv7.deb
62+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_armv7.deb
63+
sudo dpkg -i bee_0.5.3_armv7.deb
6464
```
6565

6666
##### ARM64
6767

6868
```bash
69-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_arm64.deb
70-
sudo dpkg -i bee_0.5.2_arm64.deb
69+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_arm64.deb
70+
sudo dpkg -i bee_0.5.3_arm64.deb
7171
```
7272
</TabItem>
7373
<TabItem value="centos">
@@ -77,24 +77,24 @@ sudo dpkg -i bee_0.5.2_arm64.deb
7777
#### AMD64
7878

7979
```bash
80-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_amd64.rpm
81-
sudo rpm -i bee_0.5.2_amd64.rpm
80+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_amd64.rpm
81+
sudo rpm -i bee_0.5.3_amd64.rpm
8282
```
8383

8484
#### ARM (Raspberry Pi)
8585

8686
##### ARMv7
8787

8888
```bash
89-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_armv7.rpm
90-
sudo rpm -i bee_0.5.2_armv7.rpm
89+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_armv7.rpm
90+
sudo rpm -i bee_0.5.3_armv7.rpm
9191
```
9292

9393
##### ARM64
9494

9595
```bash
96-
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.2_arm64.rpm
97-
sudo rpm -i bee_0.5.2_arm64.rpm
96+
wget https://github.com/ethersphere/bee/releases/download/v0.5.3/bee_0.5.3_arm64.rpm
97+
sudo rpm -i bee_0.5.3_arm64.rpm
9898
```
9999
</TabItem>
100100
<TabItem value="macos">

0 commit comments

Comments
 (0)