Skip to content

Commit a5cb647

Browse files
committed
Upgrade module to v21
1 parent 2914d45 commit a5cb647

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
1212
## Usage ##
1313

1414
```go
15-
import "github.com/google/go-github/v20/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
15+
import "github.com/google/go-github/v21/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
1616
import "github.com/google/go-github/github" // with go modules disabled
1717
```
1818

example/appengine/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/http"
1313
"os"
1414

15-
"github.com/google/go-github/v20/github"
15+
"github.com/google/go-github/v21/github"
1616
"golang.org/x/oauth2"
1717
"google.golang.org/appengine"
1818
"google.golang.org/appengine/log"

example/basicauth/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"strings"
1717
"syscall"
1818

19-
"github.com/google/go-github/v20/github"
19+
"github.com/google/go-github/v21/github"
2020
"golang.org/x/crypto/ssh/terminal"
2121
)
2222

example/commitpr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"strings"
3232
"time"
3333

34-
"github.com/google/go-github/v20/github"
34+
"github.com/google/go-github/v21/github"
3535
"golang.org/x/oauth2"
3636
)
3737

example/migrations/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v20/github"
15+
"github.com/google/go-github/v21/github"
1616
"golang.org/x/oauth2"
1717
)
1818

example/newrepo/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"log"
1717
"os"
1818

19-
"github.com/google/go-github/v20/github"
19+
"github.com/google/go-github/v21/github"
2020
"golang.org/x/oauth2"
2121
)
2222

example/simple/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v20/github"
15+
"github.com/google/go-github/v21/github"
1616
)
1717

1818
// Fetch all the public organizations' membership of a user.

github/examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"fmt"
1313
"log"
1414

15-
"github.com/google/go-github/v20/github"
15+
"github.com/google/go-github/v21/github"
1616
)
1717

1818
func ExampleClient_Markdown() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/google/go-github/v20
1+
module github.com/google/go-github/v21
22

33
require (
44
github.com/golang/protobuf v1.2.0 // indirect

test/fields/fields.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"reflect"
2626
"strings"
2727

28-
"github.com/google/go-github/v20/github"
28+
"github.com/google/go-github/v21/github"
2929
"golang.org/x/oauth2"
3030
)
3131

0 commit comments

Comments
 (0)