Skip to content

Commit e9df1a8

Browse files
committed
Bump version
1 parent a6b4602 commit e9df1a8

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
1717
## Usage ##
1818

1919
```go
20-
import "github.com/google/go-github/v24/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
20+
import "github.com/google/go-github/v25/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
2121
import "github.com/google/go-github/github" // with go modules disabled
2222
```
2323

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/v24/github"
15+
"github.com/google/go-github/v25/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/v24/github"
19+
"github.com/google/go-github/v25/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/v24/github"
34+
"github.com/google/go-github/v25/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/v24/github"
15+
"github.com/google/go-github/v25/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/v24/github"
19+
"github.com/google/go-github/v25/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/v24/github"
15+
"github.com/google/go-github/v25/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/v24/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
11+
import "github.com/google/go-github/v25/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/v24/github"
15+
"github.com/google/go-github/v25/github"
1616
)
1717

1818
func ExampleClient_Markdown() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/google/go-github/v24
1+
module github.com/google/go-github/v25
22

33
require (
44
github.com/golang/protobuf v1.2.0 // indirect

0 commit comments

Comments
 (0)