From 59a727e5713133f10f1b2a75874bc83f2300da06 Mon Sep 17 00:00:00 2001 From: John Beisley Date: Thu, 24 Mar 2022 08:21:29 +0000 Subject: [PATCH] Rename v2 to v2alpha. Any incremental development on this should be clearly labeled as unstable. --- {v2 => v2alpha}/soap/client/client.go | 2 +- {v2 => v2alpha}/soap/client/client_test.go | 2 +- {v2 => v2alpha}/soap/envelope/envelope.go | 0 {v2 => v2alpha}/soap/envelope/envelope_test.go | 0 {v2 => v2alpha}/soap/types/types.go | 0 {v2 => v2alpha}/soap/types/types_test.go | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename {v2 => v2alpha}/soap/client/client.go (98%) rename {v2 => v2alpha}/soap/client/client_test.go (98%) rename {v2 => v2alpha}/soap/envelope/envelope.go (100%) rename {v2 => v2alpha}/soap/envelope/envelope_test.go (100%) rename {v2 => v2alpha}/soap/types/types.go (100%) rename {v2 => v2alpha}/soap/types/types_test.go (100%) diff --git a/v2/soap/client/client.go b/v2alpha/soap/client/client.go similarity index 98% rename from v2/soap/client/client.go rename to v2alpha/soap/client/client.go index 1ea01b4..8d4ea22 100644 --- a/v2/soap/client/client.go +++ b/v2alpha/soap/client/client.go @@ -9,7 +9,7 @@ import ( "io" "net/http" - "github.com/huin/goupnp/v2/soap/envelope" + "github.com/huin/goupnp/v2alpha/soap/envelope" ) // HttpClient defines the interface required of an HTTP client. It is a subset of *http.Client. diff --git a/v2/soap/client/client_test.go b/v2alpha/soap/client/client_test.go similarity index 98% rename from v2/soap/client/client_test.go rename to v2alpha/soap/client/client_test.go index 3cb5d30..69a0a2b 100644 --- a/v2/soap/client/client_test.go +++ b/v2alpha/soap/client/client_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/huin/goupnp/v2/soap/envelope" + "github.com/huin/goupnp/v2alpha/soap/envelope" ) type ActionArgs struct { diff --git a/v2/soap/envelope/envelope.go b/v2alpha/soap/envelope/envelope.go similarity index 100% rename from v2/soap/envelope/envelope.go rename to v2alpha/soap/envelope/envelope.go diff --git a/v2/soap/envelope/envelope_test.go b/v2alpha/soap/envelope/envelope_test.go similarity index 100% rename from v2/soap/envelope/envelope_test.go rename to v2alpha/soap/envelope/envelope_test.go diff --git a/v2/soap/types/types.go b/v2alpha/soap/types/types.go similarity index 100% rename from v2/soap/types/types.go rename to v2alpha/soap/types/types.go diff --git a/v2/soap/types/types_test.go b/v2alpha/soap/types/types_test.go similarity index 100% rename from v2/soap/types/types_test.go rename to v2alpha/soap/types/types_test.go