From 3a434a304dee126741f99c6dfb57322ceaed99fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hilmar=20G=C3=BAstafsson?= Date: Mon, 13 Apr 2020 10:35:43 +0200 Subject: [PATCH] Remove unstable features --- clientapi/routing/routing.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/clientapi/routing/routing.go b/clientapi/routing/routing.go index 8e8826924..91a1588cb 100644 --- a/clientapi/routing/routing.go +++ b/clientapi/routing/routing.go @@ -68,15 +68,13 @@ func Setup( return util.JSONResponse{ Code: http.StatusOK, JSON: struct { - Versions []string `json:"versions"` - UnstableFeatures map[string]bool `json:"unstable_features"` + Versions []string `json:"versions"` }{[]string{ "r0.0.1", "r0.1.0", "r0.2.0", "r0.3.0", - }, map[string]bool{}, - }, + }}, } }), ).Methods(http.MethodGet, http.MethodOptions)