diff --git a/README.md b/README.md index 86bafb0715..eca69931bb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # go-github # -[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v31/github) +[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v32/github) [![Test Status](https://github.com/google/go-github/workflows/tests/badge.svg)](https://github.com/google/go-github/actions?query=workflow%3Atests) [![Test Coverage](https://codecov.io/gh/google/go-github/branch/master/graph/badge.svg)](https://codecov.io/gh/google/go-github) [![Discuss at go-github@googlegroups.com](https://img.shields.io/badge/discuss-go--github%40googlegroups.com-blue.svg)](https://groups.google.com/group/go-github) @@ -21,7 +21,7 @@ If you're interested in using the [GraphQL API v4][], the recommended library is ## Usage ## ```go -import "github.com/google/go-github/v31/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) +import "github.com/google/go-github/v32/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) import "github.com/google/go-github/github" // with go modules disabled ``` diff --git a/example/appengine/app.go b/example/appengine/app.go index 421d313be6..4ff98725bb 100644 --- a/example/appengine/app.go +++ b/example/appengine/app.go @@ -12,7 +12,7 @@ import ( "net/http" "os" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" "google.golang.org/appengine" "google.golang.org/appengine/log" diff --git a/example/basicauth/main.go b/example/basicauth/main.go index 627491afd1..021c1d20e5 100644 --- a/example/basicauth/main.go +++ b/example/basicauth/main.go @@ -16,7 +16,7 @@ import ( "strings" "syscall" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/crypto/ssh/terminal" ) diff --git a/example/commitpr/main.go b/example/commitpr/main.go index 2aeb5faade..2c7ff213d9 100644 --- a/example/commitpr/main.go +++ b/example/commitpr/main.go @@ -31,7 +31,7 @@ import ( "strings" "time" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" ) diff --git a/example/migrations/main.go b/example/migrations/main.go index 6c36f2efeb..d95cdb2d68 100644 --- a/example/migrations/main.go +++ b/example/migrations/main.go @@ -12,7 +12,7 @@ import ( "context" "fmt" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" ) diff --git a/example/newrepo/main.go b/example/newrepo/main.go index c8b3a4f76e..1f10533401 100644 --- a/example/newrepo/main.go +++ b/example/newrepo/main.go @@ -16,7 +16,7 @@ import ( "log" "os" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" ) diff --git a/example/simple/main.go b/example/simple/main.go index cec4fb8cd5..1e0fc8ea4e 100644 --- a/example/simple/main.go +++ b/example/simple/main.go @@ -12,7 +12,7 @@ import ( "context" "fmt" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) // Fetch all the public organizations' membership of a user. diff --git a/example/topics/main.go b/example/topics/main.go index 41f53c1578..54741c9fec 100644 --- a/example/topics/main.go +++ b/example/topics/main.go @@ -12,7 +12,7 @@ import ( "context" "fmt" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) // Fetch all the public organizations' membership of a user. diff --git a/github/doc.go b/github/doc.go index c2f0b9cd83..d1aa009a1a 100644 --- a/github/doc.go +++ b/github/doc.go @@ -8,7 +8,7 @@ Package github provides a client for using the GitHub API. Usage: - import "github.com/google/go-github/v31/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) + import "github.com/google/go-github/v32/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) import "github.com/google/go-github/github" // with go modules disabled Construct a new GitHub client, then use the various services on the client to diff --git a/github/examples_test.go b/github/examples_test.go index 83b2ade7bf..0acc0b2be9 100644 --- a/github/examples_test.go +++ b/github/examples_test.go @@ -12,7 +12,7 @@ import ( "fmt" "log" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) func ExampleClient_Markdown() { diff --git a/go.mod b/go.mod index a3eac10233..a47b74f691 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/google/go-github/v31 +module github.com/google/go-github/v32 require ( github.com/golang/protobuf v1.3.2 // indirect diff --git a/test/fields/fields.go b/test/fields/fields.go index c4a6a7dae6..49bfd82336 100644 --- a/test/fields/fields.go +++ b/test/fields/fields.go @@ -25,7 +25,7 @@ import ( "reflect" "strings" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" ) diff --git a/test/integration/activity_test.go b/test/integration/activity_test.go index d3145c7f08..c4e6b56fda 100644 --- a/test/integration/activity_test.go +++ b/test/integration/activity_test.go @@ -11,7 +11,7 @@ import ( "context" "testing" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) const ( diff --git a/test/integration/authorizations_test.go b/test/integration/authorizations_test.go index f244cd44e6..454b256501 100644 --- a/test/integration/authorizations_test.go +++ b/test/integration/authorizations_test.go @@ -16,7 +16,7 @@ import ( "testing" "time" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) const msgEnvMissing = "Skipping test because the required environment variable (%v) is not present." diff --git a/test/integration/github_test.go b/test/integration/github_test.go index d54455d42d..25f333194b 100644 --- a/test/integration/github_test.go +++ b/test/integration/github_test.go @@ -14,7 +14,7 @@ import ( "net/http" "os" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" "golang.org/x/oauth2" ) diff --git a/test/integration/repos_test.go b/test/integration/repos_test.go index 8d452b79bf..594dbb33aa 100644 --- a/test/integration/repos_test.go +++ b/test/integration/repos_test.go @@ -15,7 +15,7 @@ import ( "reflect" "testing" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) func TestRepositories_CRUD(t *testing.T) { diff --git a/test/integration/users_test.go b/test/integration/users_test.go index df834e9999..05ec2a41aa 100644 --- a/test/integration/users_test.go +++ b/test/integration/users_test.go @@ -13,7 +13,7 @@ import ( "math/rand" "testing" - "github.com/google/go-github/v31/github" + "github.com/google/go-github/v32/github" ) func TestUsers_Get(t *testing.T) {