Skip to content

Commit 9cd3f14

Browse files
author
Tobias Theel
committed
update to glocloak v13
1 parent 15d7b4e commit 9cd3f14

7 files changed

+8
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ For release notes please consult the specific releases [here](https://github.com
3232
### Installation
3333

3434
```shell
35-
go get github.com/Nerzal/gocloak/v12
35+
go get github.com/Nerzal/gocloak/v13
3636
```
3737

3838
### Importing
3939

4040
```go
41-
import "github.com/Nerzal/gocloak/v12"
41+
import "github.com/Nerzal/gocloak/v13"
4242
```
4343

4444
### Create New User

client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/pkg/errors"
1919
"github.com/segmentio/ksuid"
2020

21-
"github.com/Nerzal/gocloak/v12/pkg/jwx"
21+
"github.com/Nerzal/gocloak/v13/pkg/jwx"
2222
)
2323

2424
// GoCloak provides functionalities to talk to Keycloak.

client_benchmark_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/Nerzal/gocloak/v12"
7+
"github.com/Nerzal/gocloak/v13"
88

99
"github.com/stretchr/testify/assert"
1010
)

client_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/stretchr/testify/require"
2727
"golang.org/x/crypto/pkcs12"
2828

29-
"github.com/Nerzal/gocloak/v12"
29+
"github.com/Nerzal/gocloak/v13"
3030
)
3131

3232
type configAdmin struct {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/Nerzal/gocloak/v12
1+
module github.com/Nerzal/gocloak/v13
22

33
go 1.18
44

model_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"testing"
77

8-
"github.com/Nerzal/gocloak/v12"
8+
"github.com/Nerzal/gocloak/v13"
99

1010
"github.com/stretchr/testify/assert"
1111
)

utils_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/stretchr/testify/assert"
77

8-
"github.com/Nerzal/gocloak/v12"
8+
"github.com/Nerzal/gocloak/v13"
99
)
1010

1111
func TestStringP(t *testing.T) {

0 commit comments

Comments
 (0)