From 800819a5d7543169be36c856cdc9194847087bbb Mon Sep 17 00:00:00 2001 From: Howard Wu Date: Wed, 15 Oct 2025 11:15:12 +1300 Subject: [PATCH] feat: bump station /version endpoint to 1.2 --- cmd/fdsn-ws/fdsn_station.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fdsn-ws/fdsn_station.go b/cmd/fdsn-ws/fdsn_station.go index ba14dbc..b44221f 100644 --- a/cmd/fdsn-ws/fdsn_station.go +++ b/cmd/fdsn-ws/fdsn_station.go @@ -438,7 +438,7 @@ func fdsnStationVersion(r *http.Request, h http.Header, b *bytes.Buffer) error { } h.Set("Content-Type", "text/plain") - _, err = b.WriteString("1.1") + _, err = b.WriteString("1.2") return err }