Skip to content

Commit 42f8a9b

Browse files
committed
chore(release): bump version to v0.6.0
1 parent bd82884 commit 42f8a9b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/ash
22
trap 'shutdown' TERM INT
3-
TAILRELAY_VERSION=v0.5.0
3+
TAILRELAY_VERSION=v0.6.0
44

55
# Accept a single comma‑separated list of port:target pairs
66
# Each item in the list represents one socat relay

webui/cmd/webui/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
var embeddedFiles embed.FS
1919

2020
var (
21-
Version = "v0.2.0"
21+
Version = "v0.6.0"
2222
BuildTime = "dev"
2323
)
2424

webui/internal/handlers/dashboard.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (h *DashboardHandler) Dashboard(w http.ResponseWriter, r *http.Request) {
6868

6969
data := map[string]interface{}{
7070
"Title": "Dashboard",
71-
"Version": "v0.2.0",
71+
"Version": "v0.6.0",
7272
"TsSummary": tsSummary,
7373
"StateFormatted": tailscale.FormatBackendState(tsSummary.BackendState),
7474
"RelayCount": relayCount,
@@ -101,7 +101,7 @@ func (h *DashboardHandler) APIStatus(w http.ResponseWriter, r *http.Request) {
101101

102102
status := map[string]interface{}{
103103
"timestamp": time.Now().Format(time.RFC3339),
104-
"version": "v0.2.0",
104+
"version": "v0.6.0",
105105
"services": map[string]interface{}{
106106
"webui": "running",
107107
"tailscale": map[string]interface{}{

0 commit comments

Comments
 (0)