Skip to content

Commit

Permalink
upgrade to V11
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Theel committed Mar 1, 2022
1 parent 44d3a1f commit c0c3fdc
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ There are a lot of backward incompatible changes:
### Installation

```shell
go get github.com/Nerzal/gocloak/v10
go get github.com/Nerzal/gocloak/v11
```

### Importing

```go
import "github.com/Nerzal/gocloak/v10"
import "github.com/Nerzal/gocloak/v11"
```

### Create New User
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/pkg/errors"
"github.com/segmentio/ksuid"

"github.com/Nerzal/gocloak/v10/pkg/jwx"
"github.com/Nerzal/gocloak/v11/pkg/jwx"
)

type gocloak struct {
Expand Down
2 changes: 1 addition & 1 deletion client_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/Nerzal/gocloak/v10"
"github.com/Nerzal/gocloak/v11"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/stretchr/testify/require"
"golang.org/x/crypto/pkcs12"

"github.com/Nerzal/gocloak/v10"
"github.com/Nerzal/gocloak/v11"
)

type configAdmin struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Nerzal/gocloak/v10
module github.com/Nerzal/gocloak/v11

go 1.15

Expand Down
2 changes: 1 addition & 1 deletion model_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"testing"

"github.com/Nerzal/gocloak/v10"
"github.com/Nerzal/gocloak/v11"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/Nerzal/gocloak/v10"
"github.com/Nerzal/gocloak/v11"
)

func TestStringP(t *testing.T) {
Expand Down

0 comments on commit c0c3fdc

Please sign in to comment.