Skip to content

Commit 717177f

Browse files
committed
Upgrade go module and redis/v8
1 parent b194c51 commit 717177f

File tree

6 files changed

+138
-62
lines changed

6 files changed

+138
-62
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: go
2-
go_import_path: gopkg.in/go-oauth2/redis.v4
2+
go_import_path: github.com/go-oauth2/redis/v4
33
matrix:
44
include:
5-
- go: "1.9.7"
65
- go: 1.13.x
76
env: GO111MODULE=on
87
services:

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Install
66

77
``` bash
8-
$ go get -u -v gopkg.in/go-oauth2/redis.v4
8+
$ go get -u -v github.com/go-oauth2/redis/v4
99
```
1010

1111
## Usage
@@ -15,8 +15,8 @@ package main
1515

1616
import (
1717
"github.com/go-redis/redis"
18-
oredis "gopkg.in/go-oauth2/redis.v4"
19-
"gopkg.in/oauth2.v3/manage"
18+
oredis "github.com/go-oauth2/redis/v4"
19+
"github.com/go-oauth2/oauth2/v4/manage"
2020
)
2121

2222
func main() {
@@ -46,9 +46,9 @@ Copyright (c) 2020 Lyric
4646
[Build-Status-Image]: https://travis-ci.org/go-oauth2/redis.svg?branch=master
4747
[codecov-url]: https://codecov.io/gh/go-oauth2/redis
4848
[codecov-image]: https://codecov.io/gh/go-oauth2/redis/branch/master/graph/badge.svg
49-
[reportcard-url]: https://goreportcard.com/report/gopkg.in/go-oauth2/redis.v4
50-
[reportcard-image]: https://goreportcard.com/badge/gopkg.in/go-oauth2/redis.v4
51-
[godoc-url]: https://godoc.org/gopkg.in/go-oauth2/redis.v4
52-
[godoc-image]: https://godoc.org/gopkg.in/go-oauth2/redis.v4?status.svg
49+
[reportcard-url]: https://goreportcard.com/report/github.com/go-oauth2/redis/v4
50+
[reportcard-image]: https://goreportcard.com/badge/github.com/go-oauth2/redis/v4
51+
[godoc-url]: https://godoc.org/github.com/go-oauth2/redis/v4
52+
[godoc-image]: https://godoc.org/github.com/go-oauth2/redis/v4?status.svg
5353
[license-url]: http://opensource.org/licenses/MIT
5454
[license-image]: https://img.shields.io/npm/l/express.svg

go.mod

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
module gopkg.in/go-oauth2/redis.v4
1+
module github.com/go-oauth2/redis/v4
22

33
go 1.13
44

55
require (
6-
github.com/go-redis/redis v6.15.8+incompatible
7-
github.com/json-iterator/go v1.1.9
6+
github.com/go-oauth2/oauth2/v4 v4.1.0
7+
github.com/go-redis/redis/v8 v8.0.0-beta.5
8+
github.com/google/uuid v1.1.1
9+
github.com/json-iterator/go v1.1.10
810
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
911
github.com/modern-go/reflect2 v1.0.1 // indirect
1012
github.com/smartystreets/goconvey v1.6.4
11-
gopkg.in/oauth2.v4 v4.0.0
1213
)

0 commit comments

Comments
 (0)