From 09e4a5d646574520d60e62a72ef00c7a21d12da7 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Fri, 31 Oct 2025 23:27:38 +0100 Subject: [PATCH] doc: increament version --- internal/serve/serve.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/serve/serve.go b/internal/serve/serve.go index d293e96..60202f1 100644 --- a/internal/serve/serve.go +++ b/internal/serve/serve.go @@ -76,7 +76,7 @@ func setupSshServer(host string, port string, host_key_path string, users map[st // Serve an ssh application using the provided arguments. func Serve(host string, port string, host_key_path string, users map[string]string, name string, args []string) { setupLogging() - log.Info("Running Serve (v2.7)...") // TODO make version string automatically the git tag (otherwise commit-hash)? + log.Info("Running Serve (v2.8)...") // TODO make version string automatically the git tag (otherwise commit-hash)? defer log.Info("Stopping Serve...") srv, err := setupSshServer(host, port, host_key_path, users, name, args)