From 0a42f157f7f14e85c1189b7f183ae25887e04ffe Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Thu, 9 Jul 2026 20:58:52 -0400 Subject: [PATCH] Bump version to 1.0.34 --- Makefile | 2 +- cmd/server/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 51d36bb..6fab5ca 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BINARY=syncserver -VERSION?=1.0.33 +VERSION?=1.0.34 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 5861ec4..3c8e6f0 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.33" +var version = "1.0.34" func main() { cfgPath := flag.String("config", "", "Path to config.yaml")