Skip to content

Commit 6c3a8a1

Browse files
authored
Bump version of go-github library (#1660)
1 parent 98b466b commit 6c3a8a1

File tree

21 files changed

+25
-25
lines changed

21 files changed

+25
-25
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# go-github #
22

3-
[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v32/github)
3+
[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v33/github)
44
[![Test Status](https://github.com/google/go-github/workflows/tests/badge.svg)](https://github.com/google/go-github/actions?query=workflow%3Atests)
55
[![Test Coverage](https://codecov.io/gh/google/go-github/branch/master/graph/badge.svg)](https://codecov.io/gh/google/go-github)
66
[![Discuss at [email protected]](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
2121
## Usage ##
2222

2323
```go
24-
import "github.com/google/go-github/v32/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
24+
import "github.com/google/go-github/v33/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
2525
import "github.com/google/go-github/github" // with go modules disabled
2626
```
2727

@@ -221,7 +221,7 @@ For complete usage of go-github, see the full [package docs][].
221221
[oauth2]: https://github.com/golang/oauth2
222222
[oauth2 docs]: https://godoc.org/golang.org/x/oauth2
223223
[personal API token]: https://github.com/blog/1509-personal-api-tokens
224-
[package docs]: https://pkg.go.dev/github.com/google/go-github/v32/github
224+
[package docs]: https://pkg.go.dev/github.com/google/go-github/v33/github
225225
[GraphQL API v4]: https://developer.github.com/v4/
226226
[shurcooL/githubv4]: https://github.com/shurcooL/githubv4
227227

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/v32/github"
15+
"github.com/google/go-github/v33/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
@@ -22,7 +22,7 @@ import (
2222
"strings"
2323
"syscall"
2424

25-
"github.com/google/go-github/v32/github"
25+
"github.com/google/go-github/v33/github"
2626
"golang.org/x/crypto/ssh/terminal"
2727
)
2828

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/v32/github"
34+
"github.com/google/go-github/v33/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/v32/github"
15+
"github.com/google/go-github/v33/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/v32/github"
19+
"github.com/google/go-github/v33/github"
2020
"golang.org/x/oauth2"
2121
)
2222

example/newreposecret/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module newreposecret
22

3-
go 1.14
3+
go 1.15
44

55
require (
66
github.com/GoKillers/libsodium-go v0.0.0-20171022220152-dd733721c3cb
7-
github.com/google/go-github/v32 v32.1.0
7+
github.com/google/go-github/v33 v33.0.0
88
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
99
)

example/newreposecret/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"os"
3535

3636
sodium "github.com/GoKillers/libsodium-go/cryptobox"
37-
"github.com/google/go-github/v32/github"
37+
"github.com/google/go-github/v33/github"
3838
"golang.org/x/oauth2"
3939
)
4040

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/v32/github"
15+
"github.com/google/go-github/v33/github"
1616
)
1717

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

example/tokenauth/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"fmt"
1212
"syscall"
1313

14-
"github.com/google/go-github/v32/github"
14+
"github.com/google/go-github/v33/github"
1515
"golang.org/x/crypto/ssh/terminal"
1616
"golang.org/x/oauth2"
1717
)

0 commit comments

Comments
 (0)