Skip to content

Commit

Permalink
Bump version to v22
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlewis committed Feb 2, 2019
1 parent cf38b2b commit 94cd03c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
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/v21/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
import "github.com/google/go-github/v22/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
import "github.com/google/go-github/github" // with go modules disabled
```

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

"github.com/google/go-github/v21/github"
"github.com/google/go-github/v22/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
Expand Up @@ -16,7 +16,7 @@ import (
"strings"
"syscall"

"github.com/google/go-github/v21/github"
"github.com/google/go-github/v22/github"
"golang.org/x/crypto/ssh/terminal"
)

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

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

Expand Down
2 changes: 1 addition & 1 deletion example/migrations/main.go
Expand Up @@ -12,7 +12,7 @@ import (
"context"
"fmt"

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

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

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

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

"github.com/google/go-github/v21/github"
"github.com/google/go-github/v22/github"
)

// Fetch all the public organizations' membership of a user.
Expand Down
2 changes: 1 addition & 1 deletion github/doc.go
Expand Up @@ -8,7 +8,7 @@ Package github provides a client for using the GitHub API.
Usage:
import "github.com/google/go-github/v21/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
import "github.com/google/go-github/v22/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
import "github.com/google/go-github/github" // with go modules disabled
Construct a new GitHub client, then use the various services on the client to
Expand Down
2 changes: 1 addition & 1 deletion github/examples_test.go
Expand Up @@ -12,7 +12,7 @@ import (
"fmt"
"log"

"github.com/google/go-github/v21/github"
"github.com/google/go-github/v22/github"
)

func ExampleClient_Markdown() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,4 +1,4 @@
module github.com/google/go-github/v21
module github.com/google/go-github/v22

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

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

Expand Down

0 comments on commit 94cd03c

Please sign in to comment.