diff --git a/README.md b/README.md index 3cf4f240f8c..c7b9dcef090 100644 --- a/README.md +++ b/README.md @@ -447,7 +447,7 @@ Versions prior to 48.2.0 are not listed. | go-github Version | GitHub v3 API Version | | ----------------- | --------------------- | -| 69.0.0 | 2022-11-28 | +| 69.x.0 | 2022-11-28 | | ... | 2022-11-28 | | 48.2.0 | 2022-11-28 | diff --git a/example/go.mod b/example/go.mod index 8da3a76db4f..27045fc9221 100644 --- a/example/go.mod +++ b/example/go.mod @@ -6,7 +6,7 @@ require ( github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 github.com/bradleyfalzon/ghinstallation/v2 v2.0.4 github.com/gofri/go-github-ratelimit v1.0.3 - github.com/google/go-github/v69 v69.1.0 + github.com/google/go-github/v69 v69.2.0 github.com/sigstore/sigstore-go v0.5.1 golang.org/x/crypto v0.31.0 golang.org/x/term v0.27.0 diff --git a/example/newreposecretwithlibsodium/go.mod b/example/newreposecretwithlibsodium/go.mod index 7ec84e7116d..9c26071494e 100644 --- a/example/newreposecretwithlibsodium/go.mod +++ b/example/newreposecretwithlibsodium/go.mod @@ -4,7 +4,7 @@ go 1.22.0 require ( github.com/GoKillers/libsodium-go v0.0.0-20171022220152-dd733721c3cb - github.com/google/go-github/v69 v69.1.0 + github.com/google/go-github/v69 v69.2.0 ) require github.com/google/go-querystring v1.1.0 // indirect diff --git a/github/github.go b/github/github.go index 47bcf08f684..d163b32d2cd 100644 --- a/github/github.go +++ b/github/github.go @@ -29,7 +29,7 @@ import ( ) const ( - Version = "v69.1.0" + Version = "v69.2.0" defaultAPIVersion = "2022-11-28" defaultBaseURL = "https://api.github.com/" diff --git a/tools/go.mod b/tools/go.mod index 07bc2ebae2b..5925bcb65ba 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -6,7 +6,7 @@ require ( github.com/alecthomas/kong v1.8.0 github.com/getkin/kin-openapi v0.128.0 github.com/google/go-cmp v0.6.0 - github.com/google/go-github/v69 v69.1.0 + github.com/google/go-github/v69 v69.2.0 golang.org/x/sync v0.11.0 gopkg.in/yaml.v3 v3.0.1 )