From 0437a7b248dd4ef24fd6e7946adcfb10c2817503 Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Mon, 13 Jul 2026 15:20:20 -0400 Subject: [PATCH] Bump version to 1.0.46 --- Makefile | 2 +- cmd/server/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 64992f1..c941fa3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BINARY=syncserver -VERSION?=1.0.45 +VERSION?=1.0.46 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 df6fe2d..7bbd016 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.45" +var version = "1.0.46" func main() { cfgPath := flag.String("config", "", "Path to config.yaml")