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
[](https://groups.google.com/group/go-github)
@@ -30,29 +30,29 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
30
30
go-github is compatible with modern Go releases in module mode, with Go installed:
31
31
32
32
```bash
33
-
go get github.com/google/go-github/v74
33
+
go get github.com/google/go-github/v75
34
34
```
35
35
36
36
will resolve and add the package to the current development module, along with its dependencies.
37
37
38
38
Alternatively the same can be achieved if you use import in a package:
39
39
40
40
```go
41
-
import"github.com/google/go-github/v74/github"
41
+
import"github.com/google/go-github/v75/github"
42
42
```
43
43
44
44
and run `go get` without parameters.
45
45
46
46
Finally, to use the top-of-trunk version of this repo, use the following command:
47
47
48
48
```bash
49
-
go get github.com/google/go-github/v74@master
49
+
go get github.com/google/go-github/v75@master
50
50
```
51
51
52
52
## Usage ##
53
53
54
54
```go
55
-
import"github.com/google/go-github/v74/github"// with go modules enabled (GO111MODULE=on or outside GOPATH)
55
+
import"github.com/google/go-github/v75/github"// with go modules enabled (GO111MODULE=on or outside GOPATH)
56
56
import"github.com/google/go-github/github"// with go modules disabled
57
57
```
58
58
@@ -102,7 +102,7 @@ include the specified OAuth token. Therefore, authenticated clients should
102
102
almost never be shared between different users.
103
103
104
104
For API methods that require HTTP Basic Authentication, use the
0 commit comments