Skip to content

Commit

Permalink
V0.5.3 dev (#147)
Browse files Browse the repository at this point in the history
* update api

* bump version number

* remove announcement for now

* bump api specs

* fix links

* bump clef version

* amend configuration
  • Loading branch information
significance authored Feb 26, 2021
1 parent 42c2c22 commit b3833ac
Show file tree
Hide file tree
Showing 10 changed files with 98 additions and 88 deletions.
4 changes: 2 additions & 2 deletions docs/api-reference/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The API-endpoint exposes all functionality to upload and download content to and

Detailed information about Bee API endpoint can be found here:

- <a href="../../api" target="_blank" rel="noopener noreferrer">Bee API reference.</a>
- <a href="/api" target="_blank" rel="noopener noreferrer">Bee API reference.</a>


## Debug API
Expand All @@ -24,7 +24,7 @@ The debug-API is disabled by default but be enabled by setting the `enable-debug
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/installation/configuration#configuring-bee-installed-using-a-package-manager) and restart your Bee service.
:::

- <a href="../../debug-api" target="_blank" rel="noopener noreferrer">Debug API reference.</a>,
- <a href="/debug-api" target="_blank" rel="noopener noreferrer">Debug API reference.</a>,

:::danger
Your Debug API should not be exposed to the public internet, make sure that your network has a firewall which blocks port `1635`, or bind the Debug API to `localhost`
Expand Down
24 changes: 12 additions & 12 deletions docs/installation/bee-clef.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,49 +20,49 @@ Bee clef can be installed automatically using your system's package manager.
#### AMD64

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_amd64.deb
sudo dpkg -i bee-clef_0.4.7_amd64.deb
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_amd64.deb
sudo dpkg -i bee-clef_0.4.9_amd64.deb
```

#### ARM (Raspberry Pi)

##### ARMv7

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_armv7.deb
sudo dpkg -i bee-clef_0.4.7_armv7.deb
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_armv7.deb
sudo dpkg -i bee-clef_0.4.9_armv7.deb
```

##### ARM64

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_arm64.deb
sudo dpkg -i bee-clef_0.4.7_arm64.deb
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_arm64.deb
sudo dpkg -i bee-clef_0.4.9_arm64.deb
```

### CentOS

#### AMD64

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_amd64.rpm
sudo rpm -i bee-clef_0.4.7_amd64.rpm
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_amd64.rpm
sudo rpm -i bee-clef_0.4.9_amd64.rpm
```

#### ARM (Raspberry Pi)

##### ARMv7

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_armv7.rpm
sudo rpm -i bee-clef_0.4.7_armv7.rpm
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_armv7.rpm
sudo rpm -i bee-clef_0.4.9_armv7.rpm
```

##### ARM64

```sh
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.7/bee-clef_0.4.7_arm64.rpm
sudo rpm -i bee-clef_0.4.7_arm64.rpm
wget https://github.com/ethersphere/bee-clef/releases/download/v0.4.9/bee-clef_0.4.9_arm64.rpm
sudo rpm -i bee-clef_0.4.9_arm64.rpm
```

### MacOS
Expand Down
4 changes: 2 additions & 2 deletions docs/installation/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ git describe --tags
3) Checkout the required version:

```sh
git checkout v0.5.0
git checkout v0.5.1
```

4) Build the binary:
Expand All @@ -47,7 +47,7 @@ dist/bee version
```

```
0.5.0
0.5.1
```

6) (optional) Additionally, you may also like to move the Bee binary to somewhere in your `$PATH`
Expand Down
8 changes: 4 additions & 4 deletions docs/installation/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ p2p-quic-enable: false
p2p-ws-enable: false
password: ""
password-file: ""
payment-early: "10000"
payment-threshold: "100000"
payment-tolerance: "10000"
payment-early: "1000000000000"
payment-threshold: "10000000000000"
payment-tolerance: "50000000000000"
resolver-options: []
standalone: false
swap-enable: true
swap-endpoint: http://localhost:8545
swap-factory-address: ""
swap-initial-deposit: "100000000"
swap-initial-deposit: "100000000000000000"
tracing-enable: false
tracing-endpoint: 127.0.0.1:6831
tracing-service-name: bee
Expand Down
6 changes: 3 additions & 3 deletions docs/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ docker pull ethersphere/bee:beta
#### Specific Versions

```sh
docker pull ethersphere/bee:0.5.0
docker pull ethersphere/bee:0.5.1
```

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

```sh
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.5.0/packaging/docker/docker-compose.yml
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.5.1/packaging/docker/docker-compose.yml
```

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.

```sh
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.5.0/packaging/docker/env -O .env
wget -q https://raw.githubusercontent.com/ethersphere/bee/v0.5.1/packaging/docker/env -O .env
```

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.
Expand Down
6 changes: 3 additions & 3 deletions docs/installation/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ To install the binary using our quick install script, run either one of the foll

#### wget
```sh
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.5.0 bash
wget -q -O - https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.5.1 bash
```

#### curl
```sh
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.5.0 bash
curl -s https://raw.githubusercontent.com/ethersphere/bee/master/install.sh | TAG=v0.5.1 bash
```

### Bee Clef External Signer
Expand All @@ -34,7 +34,7 @@ bee version
```

```
0.5.0
0.5.1
```

Now your Bee node is installed, you can fund your node with gBZZ join us in the swarm! 🐝 🐝 🐝 🐝 🐝
Expand Down
24 changes: 12 additions & 12 deletions docs/installation/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,49 +33,49 @@ Follow post install guide in terminal for initial configuration and how to start
#### AMD64

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_amd64.deb
sudo dpkg -i bee_0.5.0_amd64.deb
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_amd64.deb
sudo dpkg -i bee_0.5.1_amd64.deb
```

#### ARM (Raspberry Pi)

##### ARMv7

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_armv7.deb
sudo dpkg -i bee_0.5.0_armv7.deb
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_armv7.deb
sudo dpkg -i bee_0.5.1_armv7.deb
```

##### ARM64

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_arm64.deb
sudo dpkg -i bee_0.5.0_arm64.deb
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_arm64.deb
sudo dpkg -i bee_0.5.1_arm64.deb
```

### CentOS

#### AMD64

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_amd64.rpm
sudo rpm -i bee_0.5.0_amd64.rpm
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_amd64.rpm
sudo rpm -i bee_0.5.1_amd64.rpm
```

#### ARM (Raspberry Pi)

##### ARMv7

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_armv7.rpm
sudo rpm -i bee_0.5.0_armv7.rpm
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_armv7.rpm
sudo rpm -i bee_0.5.1_armv7.rpm
```

##### ARM64

```sh
wget https://github.com/ethersphere/bee/releases/download/v0.5.0/bee_0.5.0_arm64.rpm
sudo rpm -i bee_0.5.0_arm64.rpm
wget https://github.com/ethersphere/bee/releases/download/v0.5.1/bee_0.5.1_arm64.rpm
sudo rpm -i bee_0.5.1_arm64.rpm
```

### MacOS
Expand Down
14 changes: 7 additions & 7 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ module.exports = {
],
copyright: `Copyleft © ${new Date().getFullYear()}.`,
},
announcementBar: {
id: 'bee_announcements',
content:
'🐝 v0.5.0 is released feat. Swarm Feeds! Update your Bees now! 🐝',
backgroundColor: '#dd7200', // Defaults to `#fff`.
textColor: '#242424', // Defaults to `#000`.
},
// announcementBar: {
// id: 'bee_announcements',
// content:
// '🐝 v0.5.0 is released feat. Swarm Feeds! Update your Bees now! 🐝',
// backgroundColor: '#dd7200', // Defaults to `#fff`.
// textColor: '#242424', // Defaults to `#000`.
// },
},
presets: [
[
Expand Down
Loading

0 comments on commit b3833ac

Please sign in to comment.