Skip to content

Commit f5442b7

Browse files
authored
Prepare for release v30.0.0 (#1456)
1 parent e5d8dd6 commit f5442b7

File tree

17 files changed

+18
-18
lines changed

17 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 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/v29/github)
3+
[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v30/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 go-github@googlegroups.com](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/v29/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
24+
import "github.com/google/go-github/v30/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
2525
import "github.com/google/go-github/github" // with go modules disabled
2626
```
2727

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/v29/github"
15+
"github.com/google/go-github/v30/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
@@ -16,7 +16,7 @@ import (
1616
"strings"
1717
"syscall"
1818

19-
"github.com/google/go-github/v29/github"
19+
"github.com/google/go-github/v30/github"
2020
"golang.org/x/crypto/ssh/terminal"
2121
)
2222

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

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

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

example/topics/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/v29/github"
15+
"github.com/google/go-github/v30/github"
1616
)
1717

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

github/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Package github provides a client for using the GitHub API.
88
99
Usage:
1010
11-
import "github.com/google/go-github/v29/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
11+
import "github.com/google/go-github/v30/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
1212
import "github.com/google/go-github/github" // with go modules disabled
1313
1414
Construct a new GitHub client, then use the various services on the client to

github/examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"fmt"
1313
"log"
1414

15-
"github.com/google/go-github/v29/github"
15+
"github.com/google/go-github/v30/github"
1616
)
1717

1818
func ExampleClient_Markdown() {

0 commit comments

Comments
 (0)