Skip to content

Commit 35781f7

Browse files
authored
Update version to v19 (google#1056)
1 parent a20c5a1 commit 35781f7

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
1212
## Usage ##
1313

1414
```go
15-
import "github.com/google/go-github/v18/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
15+
import "github.com/google/go-github/v19/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
1616
import "github.com/google/go-github/github" // with go modules disabled
1717
```
1818

@@ -225,7 +225,7 @@ You can run integration tests from the `test` directory. See the integration tes
225225
This library is being initially developed for an internal application at
226226
Google, so API methods will likely be implemented in the order that they are
227227
needed by that application. You can track the status of implementation in
228-
[this Google spreadsheet][roadmap].
228+
[this Google spreadsheet][roadmap].
229229

230230
[roadmap]: https://docs.google.com/spreadsheet/ccc?key=0ApoVX4GOiXr-dGNKN1pObFh6ek1DR2FKUjBNZ1FmaEE&usp=sharing
231231

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/v18/github"
15+
"github.com/google/go-github/v19/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/v18/github"
19+
"github.com/google/go-github/v19/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/v18/github"
34+
"github.com/google/go-github/v19/github"
3535
"golang.org/x/oauth2"
3636
)
3737

example/migrations/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ package main
1111
import (
1212
"context"
1313
"fmt"
14-
"github.com/google/go-github/v18/github"
14+
15+
"github.com/google/go-github/v19/github"
1516
"golang.org/x/oauth2"
1617
)
1718

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

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

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/v18/github"
15+
"github.com/google/go-github/v19/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/v18
1+
module github.com/google/go-github/v19
22

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

test/fields/fields.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"reflect"
2626
"strings"
2727

28-
"github.com/google/go-github/v18/github"
28+
"github.com/google/go-github/v19/github"
2929
"golang.org/x/oauth2"
3030
)
3131

0 commit comments

Comments
 (0)