From ccfd49778ec7eecd19f235071910327e821122d3 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Wed, 8 Apr 2026 19:05:02 +0200 Subject: [PATCH] Update to Golang 1.26.2 --- examples/navigation-station-demo/go.mod | 4 ++-- examples/preset-management/go.mod | 4 ++-- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index 98aa413..68592ea 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -1,8 +1,8 @@ module navigation-station-demo -go 1.26.1 +go 1.26.2 -require github.com/gesellix/bose-soundtouch v0.53.0 +require github.com/gesellix/bose-soundtouch v0.57.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index f1b2576..0adbd06 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -1,8 +1,8 @@ module preset-management-example -go 1.26.1 +go 1.26.2 -require github.com/gesellix/bose-soundtouch v0.53.0 +require github.com/gesellix/bose-soundtouch v0.57.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/go.mod b/go.mod index 2e27104..77d180d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gesellix/bose-soundtouch -go 1.26.1 +go 1.26.2 require ( github.com/go-chi/chi/v5 v5.2.5