You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[![Discuss at [email protected]](https://img.shields.io/badge/discuss-go--github%40googlegroups.com-blue.svg)](https://groups.google.com/group/go-github)
@@ -25,29 +25,29 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
25
25
go-github is compatible with modern Go releases in module mode, with Go installed:
26
26
27
27
```bash
28
-
go get github.com/google/go-github/v67
28
+
go get github.com/google/go-github/v68
29
29
```
30
30
31
31
will resolve and add the package to the current development module, along with its dependencies.
32
32
33
33
Alternatively the same can be achieved if you use import in a package:
34
34
35
35
```go
36
-
import"github.com/google/go-github/v67/github"
36
+
import"github.com/google/go-github/v68/github"
37
37
```
38
38
39
39
and run `go get` without parameters.
40
40
41
41
Finally, to use the top-of-trunk version of this repo, use the following command:
42
42
43
43
```bash
44
-
go get github.com/google/go-github/v67@master
44
+
go get github.com/google/go-github/v68@master
45
45
```
46
46
47
47
## Usage ##
48
48
49
49
```go
50
-
import"github.com/google/go-github/v67/github"// with go modules enabled (GO111MODULE=on or outside GOPATH)
50
+
import"github.com/google/go-github/v68/github"// with go modules enabled (GO111MODULE=on or outside GOPATH)
51
51
import"github.com/google/go-github/github"// with go modules disabled
52
52
```
53
53
@@ -120,7 +120,7 @@ import (
120
120
"net/http"
121
121
122
122
"github.com/bradleyfalzon/ghinstallation/v2"
123
-
"github.com/google/go-github/v67/github"
123
+
"github.com/google/go-github/v68/github"
124
124
)
125
125
126
126
funcmain() {
@@ -154,7 +154,7 @@ import (
154
154
"os"
155
155
"strconv"
156
156
157
-
"github.com/google/go-github/v67/github"
157
+
"github.com/google/go-github/v68/github"
158
158
"github.com/jferrl/go-githubauth"
159
159
"golang.org/x/oauth2"
160
160
)
@@ -362,7 +362,7 @@ For complete usage of go-github, see the full [package docs][].
0 commit comments