From 4d0d521c6657be2e4be198c7693892a76fddd325 Mon Sep 17 00:00:00 2001 From: SoXX Date: Sun, 1 Sep 2024 19:09:40 +0200 Subject: [PATCH] fix(version): fix version --- .idea/runConfigurations/Generate_Code.xml | 10 ++-------- .idea/vcs.xml | 6 ++++++ README.md | 2 +- docs/PlugAPI.md | 6 +++--- go.mod | 2 +- test/api_plug_test.go | 2 +- test/api_user_test.go | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.idea/runConfigurations/Generate_Code.xml b/.idea/runConfigurations/Generate_Code.xml index 63dbbb6..b1c6ea1 100644 --- a/.idea/runConfigurations/Generate_Code.xml +++ b/.idea/runConfigurations/Generate_Code.xml @@ -2,24 +2,18 @@ - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1dd..7ddfc9e 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,5 +1,11 @@ + + + + + + diff --git a/README.md b/README.md index ad6d704..1f8a5b9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ go get golang.org/x/net/context Put the package under your project folder and add the following in import: ```golang -import openapi "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" +import openapi "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" ``` To use a proxy, set the environment variable `HTTP_PROXY`: diff --git a/docs/PlugAPI.md b/docs/PlugAPI.md index 010d9c1..0406020 100644 --- a/docs/PlugAPI.md +++ b/docs/PlugAPI.md @@ -27,7 +27,7 @@ import ( "context" "fmt" "os" - openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" + openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" ) func main() { @@ -97,7 +97,7 @@ import ( "context" "fmt" "os" - openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" + openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" ) func main() { @@ -168,7 +168,7 @@ import ( "context" "fmt" "os" - openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" + openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" ) func main() { diff --git a/go.mod b/go.mod index ecfc49d..83a1532 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1 +module git.anthrove.art/Anthrove/orchestrator-swagger-go-client go 1.13 diff --git a/test/api_plug_test.go b/test/api_plug_test.go index 857fe3b..3988e22 100644 --- a/test/api_plug_test.go +++ b/test/api_plug_test.go @@ -11,7 +11,7 @@ package openapi import ( "context" - openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" + openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "testing" diff --git a/test/api_user_test.go b/test/api_user_test.go index 93948dd..8e58937 100644 --- a/test/api_user_test.go +++ b/test/api_user_test.go @@ -11,7 +11,7 @@ package openapi import ( "context" - openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client/v1" + openapiclient "git.anthrove.art/Anthrove/orchestrator-swagger-go-client" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "testing"