diff --git a/README.md b/README.md index 301e6ce4..cd88b7e7 100644 --- a/README.md +++ b/README.md @@ -32,13 +32,13 @@ For release notes please consult the specific releases [here](https://github.com ### Installation ```shell -go get github.com/Nerzal/gocloak/v12 +go get github.com/Nerzal/gocloak/v13 ``` ### Importing ```go - import "github.com/Nerzal/gocloak/v12" + import "github.com/Nerzal/gocloak/v13" ``` ### Create New User diff --git a/client.go b/client.go index 77560223..9967e533 100644 --- a/client.go +++ b/client.go @@ -18,7 +18,7 @@ import ( "github.com/pkg/errors" "github.com/segmentio/ksuid" - "github.com/Nerzal/gocloak/v12/pkg/jwx" + "github.com/Nerzal/gocloak/v13/pkg/jwx" ) // GoCloak provides functionalities to talk to Keycloak. diff --git a/client_benchmark_test.go b/client_benchmark_test.go index cbd3ebab..dc8d9491 100644 --- a/client_benchmark_test.go +++ b/client_benchmark_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/Nerzal/gocloak/v12" + "github.com/Nerzal/gocloak/v13" "github.com/stretchr/testify/assert" ) diff --git a/client_test.go b/client_test.go index f4763b80..08bacd7e 100644 --- a/client_test.go +++ b/client_test.go @@ -26,7 +26,7 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/crypto/pkcs12" - "github.com/Nerzal/gocloak/v12" + "github.com/Nerzal/gocloak/v13" ) type configAdmin struct { diff --git a/go.mod b/go.mod index 3359f49d..52a14285 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Nerzal/gocloak/v12 +module github.com/Nerzal/gocloak/v13 go 1.18 diff --git a/model_test.go b/model_test.go index ce342ba1..ad069f2d 100644 --- a/model_test.go +++ b/model_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/Nerzal/gocloak/v12" + "github.com/Nerzal/gocloak/v13" "github.com/stretchr/testify/assert" ) diff --git a/utils_test.go b/utils_test.go index 0e2d5c70..ec3af233 100644 --- a/utils_test.go +++ b/utils_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/Nerzal/gocloak/v12" + "github.com/Nerzal/gocloak/v13" ) func TestStringP(t *testing.T) {