Skip to content

Commit 071db75

Browse files
committed
docs(readme): bump install examples to VERSION=0.3.0
1 parent 1b9f1e5 commit 071db75

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ On a fresh Debian / Ubuntu VM (`amd64`):
3636

3737
```sh
3838
# 1. Install the server.
39-
VERSION=0.2.0
39+
VERSION=0.3.0
4040
curl -fsSLO "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/nebula-mgmt_${VERSION}_linux_amd64.deb"
4141
sudo apt install -y "./nebula-mgmt_${VERSION}_linux_amd64.deb"
4242

@@ -120,12 +120,12 @@ nebula-mesh ships **two** static binaries. Install whichever you need on each ma
120120
| `nebula-mgmt` | one server (the control plane) |
121121
| `nebula-agent` | every Nebula host, next to `nebula` |
122122

123-
Pick an install method below. The examples assume `VERSION=0.2.0` — replace with the latest from the [releases page](https://github.com/juev/nebula-mesh/releases/latest). Each release ships a `checksums.txt` (SHA-256).
123+
Pick an install method below. The examples assume `VERSION=0.3.0` — replace with the latest from the [releases page](https://github.com/juev/nebula-mesh/releases/latest). Each release ships a `checksums.txt` (SHA-256).
124124

125125
### Debian / Ubuntu (`.deb`)
126126

127127
```sh
128-
VERSION=0.2.0
128+
VERSION=0.3.0
129129
ARCH=$(dpkg --print-architecture) # amd64 | arm64 | armhf (agent only)
130130

131131
# Server (control plane):
@@ -140,7 +140,7 @@ sudo apt install -y "./nebula-agent_${VERSION}_linux_${ARCH}.deb"
140140
### RHEL / Fedora / Rocky / Alma (`.rpm`)
141141

142142
```sh
143-
VERSION=0.2.0
143+
VERSION=0.3.0
144144
ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
145145

146146
sudo rpm -i "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/nebula-mgmt_${VERSION}_linux_${ARCH}.rpm"
@@ -154,7 +154,7 @@ sudo rpm -i "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/n
154154
Download a tarball from the [releases page](https://github.com/juev/nebula-mesh/releases/latest) and extract:
155155

156156
```sh
157-
VERSION=0.2.0
157+
VERSION=0.3.0
158158
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
159159
ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
160160

0 commit comments

Comments
 (0)