Skip to content

Commit

Permalink
update to glocloak v13
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Theel committed Feb 22, 2023
1 parent 15d7b4e commit 9cd3f14
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 @@ -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
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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/v12"
"github.com/Nerzal/gocloak/v13"

"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/v12"
"github.com/Nerzal/gocloak/v13"
)

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/v12
module github.com/Nerzal/gocloak/v13

go 1.18

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/v12"
"github.com/Nerzal/gocloak/v13"

"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/v12"
"github.com/Nerzal/gocloak/v13"
)

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

0 comments on commit 9cd3f14

Please sign in to comment.