From 867794d846e9e0be9032ee9fe3c6e1ba5adcd8d5 Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Sun, 19 Jul 2026 22:18:12 -0400 Subject: [PATCH] Bump version to 1.0.55 --- Makefile | 2 +- cmd/server/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9e8d4bc..d08dac2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BINARY=syncserver -VERSION?=1.0.54 +VERSION?=1.0.55 GO?=go LDFLAGS=-s -w -X main.version=$(VERSION) -X main.commit=$(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) BUILD_FLAGS=CGO_ENABLED=0 diff --git a/cmd/server/main.go b/cmd/server/main.go index 9610695..2cf4ea9 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -20,7 +20,7 @@ import ( "github.com/syncserver/internal/syncengine" ) -var version = "1.0.54" +var version = "1.0.55" func main() { cfgPath := flag.String("config", "", "Path to config.yaml")