feat: make machine init/add upgrade installed daemon binary to latest or specified version

This commit is contained in:
Pasha Sviderski
2026-05-21 15:58:04 +10:00
parent 29faeef5a5
commit a26af3b2ae
2 changed files with 66 additions and 18 deletions
+3 -2
View File
@@ -31,8 +31,9 @@ const (
//
// The two minimums are independent: a client might require a newer daemon for new
// features, while that same daemon could still handle requests from older clients.
MinClientVersion = "0.20.0"
MinServerVersion = "0.20.0"
// TODO: update to 0.20.0 before releasing 0.20.0.
MinClientVersion = "0.20.0-nightly"
MinServerVersion = "0.20.0-nightly"
ReleaseURL = "https://github.com/psviderski/uncloud/releases/latest"
)