Skip to content

Commit c67c094

Browse files
pivotal-ivan-wangCarl He
andcommitted
bump version to v5
Signed-off-by: Carl He <[email protected]> Co-authored-by: Carl He <[email protected]>
1 parent e8a2667 commit c67c094

39 files changed

+99
-98
lines changed

auth_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"net/http"
66

77
"github.com/onsi/gomega/ghttp"
8-
"github.com/pivotal-cf/go-pivnet/v4"
9-
"github.com/pivotal-cf/go-pivnet/v4/logger"
10-
"github.com/pivotal-cf/go-pivnet/v4/logger/loggerfakes"
8+
"github.com/pivotal-cf/go-pivnet/v5"
9+
"github.com/pivotal-cf/go-pivnet/v5/logger"
10+
"github.com/pivotal-cf/go-pivnet/v5/logger/loggerfakes"
1111

1212
. "github.com/onsi/ginkgo"
1313
. "github.com/onsi/gomega"

dependency_specifiers_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package pivnet_test
22

33
import (
44
"fmt"
5-
"github.com/pivotal-cf/go-pivnet/v4/go-pivnetfakes"
5+
"github.com/pivotal-cf/go-pivnet/v5/go-pivnetfakes"
66
"net/http"
77

88
"github.com/onsi/gomega/ghttp"
9-
"github.com/pivotal-cf/go-pivnet/v4"
10-
"github.com/pivotal-cf/go-pivnet/v4/logger"
11-
"github.com/pivotal-cf/go-pivnet/v4/logger/loggerfakes"
9+
"github.com/pivotal-cf/go-pivnet/v5"
10+
"github.com/pivotal-cf/go-pivnet/v5/logger"
11+
"github.com/pivotal-cf/go-pivnet/v5/logger/loggerfakes"
1212

1313
. "github.com/onsi/ginkgo"
1414
. "github.com/onsi/gomega"

download/downloader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package download
22

33
import (
44
"fmt"
5-
"github.com/pivotal-cf/go-pivnet/v4/logger"
5+
"github.com/pivotal-cf/go-pivnet/v5/logger"
66
"golang.org/x/sync/errgroup"
77
"io"
88
"net"

download/downloader_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"sync"
1111

12-
"github.com/pivotal-cf/go-pivnet/v4/download"
13-
"github.com/pivotal-cf/go-pivnet/v4/download/fakes"
12+
"github.com/pivotal-cf/go-pivnet/v5/download"
13+
"github.com/pivotal-cf/go-pivnet/v5/download/fakes"
1414

1515
"fmt"
1616
. "github.com/onsi/ginkgo"
@@ -19,7 +19,7 @@ import (
1919
"syscall"
2020
"math"
2121
"time"
22-
"github.com/pivotal-cf/go-pivnet/v4/logger/loggerfakes"
22+
"github.com/pivotal-cf/go-pivnet/v5/logger/loggerfakes"
2323
"os"
2424
)
2525

download/fakes/ranger.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

download/progress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"golang.org/x/sync/errgroup"
88

9-
"github.com/pivotal-cf/go-pivnet/v4/download"
9+
"github.com/pivotal-cf/go-pivnet/v5/download"
1010

1111
. "github.com/onsi/ginkgo"
1212
. "github.com/onsi/gomega"

download/ranger_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package download_test
33
import (
44
"net/http"
55

6-
"github.com/pivotal-cf/go-pivnet/v4/download"
6+
"github.com/pivotal-cf/go-pivnet/v5/download"
77

88
. "github.com/onsi/ginkgo"
99
. "github.com/onsi/gomega"

eulas_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package pivnet_test
22

33
import (
44
"fmt"
5-
"github.com/pivotal-cf/go-pivnet/v4/go-pivnetfakes"
5+
"github.com/pivotal-cf/go-pivnet/v5/go-pivnetfakes"
66
"net/http"
77

88
"github.com/onsi/gomega/ghttp"
9-
"github.com/pivotal-cf/go-pivnet/v4"
10-
"github.com/pivotal-cf/go-pivnet/v4/logger"
11-
"github.com/pivotal-cf/go-pivnet/v4/logger/loggerfakes"
9+
"github.com/pivotal-cf/go-pivnet/v5"
10+
"github.com/pivotal-cf/go-pivnet/v5/logger"
11+
"github.com/pivotal-cf/go-pivnet/v5/logger/loggerfakes"
1212

1313
. "github.com/onsi/ginkgo"
1414
. "github.com/onsi/gomega"

example/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"log"
66
"os"
77

8-
pivnet "github.com/pivotal-cf/go-pivnet/v4"
9-
"github.com/pivotal-cf/go-pivnet/v4/logshim"
8+
pivnet "github.com/pivotal-cf/go-pivnet/v5"
9+
"github.com/pivotal-cf/go-pivnet/v5/logshim"
1010
)
1111

1212
func main() {

federation_token_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package pivnet_test
22

33
import (
44
"fmt"
5-
"github.com/pivotal-cf/go-pivnet/v4/go-pivnetfakes"
5+
"github.com/pivotal-cf/go-pivnet/v5/go-pivnetfakes"
66
"net/http"
77

88
"github.com/onsi/gomega/ghttp"
9-
"github.com/pivotal-cf/go-pivnet/v4"
10-
"github.com/pivotal-cf/go-pivnet/v4/logger"
11-
"github.com/pivotal-cf/go-pivnet/v4/logger/loggerfakes"
9+
"github.com/pivotal-cf/go-pivnet/v5"
10+
"github.com/pivotal-cf/go-pivnet/v5/logger"
11+
"github.com/pivotal-cf/go-pivnet/v5/logger/loggerfakes"
1212

1313
. "github.com/onsi/ginkgo"
1414
. "github.com/onsi/gomega"

0 commit comments

Comments
 (0)