Skip to content

Commit

Permalink
Update version to v19 (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlewis committed Nov 22, 2018
1 parent a20c5a1 commit 35781f7
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
## Usage ##

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion example/appengine/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"net/http"
"os"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
"golang.org/x/oauth2"
"google.golang.org/appengine"
"google.golang.org/appengine/log"
Expand Down
2 changes: 1 addition & 1 deletion example/basicauth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"
"syscall"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
"golang.org/x/crypto/ssh/terminal"
)

Expand Down
2 changes: 1 addition & 1 deletion example/commitpr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"strings"
"time"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
"golang.org/x/oauth2"
)

Expand Down
3 changes: 2 additions & 1 deletion example/migrations/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ package main
import (
"context"
"fmt"
"github.com/google/go-github/v18/github"

"github.com/google/go-github/v19/github"
"golang.org/x/oauth2"
)

Expand Down
2 changes: 1 addition & 1 deletion example/newrepo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"log"
"os"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
"golang.org/x/oauth2"
)

Expand Down
2 changes: 1 addition & 1 deletion example/simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"context"
"fmt"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
)

// Fetch all the public organizations' membership of a user.
Expand Down
2 changes: 1 addition & 1 deletion github/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"fmt"
"log"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
)

func ExampleClient_Markdown() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/google/go-github/v18
module github.com/google/go-github/v19

require (
github.com/golang/protobuf v1.2.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion test/fields/fields.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"reflect"
"strings"

"github.com/google/go-github/v18/github"
"github.com/google/go-github/v19/github"
"golang.org/x/oauth2"
)

Expand Down

0 comments on commit 35781f7

Please sign in to comment.