From ff7f8a25c3f516becfb29343b3e27ca8b43db2d6 Mon Sep 17 00:00:00 2001 From: Glenn Lewis <6598971+gmlewis@users.noreply.github.com> Date: Wed, 21 Nov 2018 21:33:27 -0500 Subject: [PATCH] Update version to v19 (#1056) --- README.md | 4 ++-- example/appengine/app.go | 2 +- example/basicauth/main.go | 2 +- example/commitpr/main.go | 2 +- example/migrations/main.go | 3 ++- example/newrepo/main.go | 2 +- example/simple/main.go | 2 +- github/examples_test.go | 2 +- go.mod | 2 +- test/fields/fields.go | 2 +- 10 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7bba67dbd70..6e18a33b295 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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 diff --git a/example/appengine/app.go b/example/appengine/app.go index 38f24e4e6a3..81756b5c372 100644 --- a/example/appengine/app.go +++ b/example/appengine/app.go @@ -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" diff --git a/example/basicauth/main.go b/example/basicauth/main.go index 8dfd68a6303..2c7f4934c04 100644 --- a/example/basicauth/main.go +++ b/example/basicauth/main.go @@ -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" ) diff --git a/example/commitpr/main.go b/example/commitpr/main.go index 80ac88e86ac..b62079a5317 100644 --- a/example/commitpr/main.go +++ b/example/commitpr/main.go @@ -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" ) diff --git a/example/migrations/main.go b/example/migrations/main.go index d82660686f9..8a80252fdeb 100644 --- a/example/migrations/main.go +++ b/example/migrations/main.go @@ -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" ) diff --git a/example/newrepo/main.go b/example/newrepo/main.go index 49fba776250..af3127a4952 100644 --- a/example/newrepo/main.go +++ b/example/newrepo/main.go @@ -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" ) diff --git a/example/simple/main.go b/example/simple/main.go index 5f2ce20a916..02da00f834c 100644 --- a/example/simple/main.go +++ b/example/simple/main.go @@ -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. diff --git a/github/examples_test.go b/github/examples_test.go index 70194a1a48a..67437a7db0f 100644 --- a/github/examples_test.go +++ b/github/examples_test.go @@ -12,7 +12,7 @@ import ( "fmt" "log" - "github.com/google/go-github/v18/github" + "github.com/google/go-github/v19/github" ) func ExampleClient_Markdown() { diff --git a/go.mod b/go.mod index 9fb89f5d0f5..b12d7b70c6c 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/test/fields/fields.go b/test/fields/fields.go index 1a75a4c65f3..533c0522190 100644 --- a/test/fields/fields.go +++ b/test/fields/fields.go @@ -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" )