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,36 +30,36 @@ 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/v82
33
+
go get github.com/google/go-github/v83
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/v82/github"
41
+
import"github.com/google/go-github/v83/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/v82@master
49
+
go get github.com/google/go-github/v83@master
50
50
```
51
51
52
52
To discover all the changes that have occurred since a prior release, you can
53
53
first clone the repo, then run (for example):
54
54
55
55
```bash
56
-
go run tools/gen-release-notes/main.go --tag v82.0.0
56
+
go run tools/gen-release-notes/main.go --tag v83.0.0
57
57
```
58
58
59
59
## Usage ##
60
60
61
61
```go
62
-
import"github.com/google/go-github/v82/github"
62
+
import"github.com/google/go-github/v83/github"
63
63
```
64
64
65
65
Construct a new GitHub client, then use the various services on the client to
@@ -108,7 +108,7 @@ include the specified OAuth token. Therefore, authenticated clients should
108
108
almost never be shared between different users.
109
109
110
110
For API methods that require HTTP Basic Authentication, use the
0 commit comments