From 5335a89faef3dce1b7fedd4a262319316f87f2dd Mon Sep 17 00:00:00 2001 From: Thomas Karpiniec Date: Wed, 28 May 2025 22:13:25 +1000 Subject: [PATCH] Update version tag to v1.1.0 --- radio/main.go | 2 +- server/main.go | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/radio/main.go b/radio/main.go index 1f95d76..22658a3 100644 --- a/radio/main.go +++ b/radio/main.go @@ -20,7 +20,7 @@ import ( "golang.org/x/net/websocket" ) -const version = "v1.0.0" +const version = "v1.1.0" const sampleRate = 44100 var config RadioConfig = NewRadioConfig() diff --git a/server/main.go b/server/main.go index 5e83fbc..ca92168 100644 --- a/server/main.go +++ b/server/main.go @@ -5,8 +5,6 @@ import ( "embed" "flag" "fmt" - "golang.org/x/crypto/bcrypt" - "golang.org/x/net/websocket" "html/template" "io" "log" @@ -16,9 +14,12 @@ import ( "strconv" "strings" "time" + + "golang.org/x/crypto/bcrypt" + "golang.org/x/net/websocket" ) -const version = "v1.0.0" +const version = "v1.1.0" const formatString = "2006-01-02T15:04:05" //go:embed templates/* -- 2.39.5