aboutsummaryrefslogtreecommitdiff
path: root/internal/stdlib/stdlib.go
diff options
context:
space:
mode:
authorDaniel Martí <mvdan@mvdan.cc>2020-06-15 17:28:12 +0100
committerDaniel Martí <mvdan@mvdan.cc>2020-06-16 16:08:36 +0000
commitcd7f8b570a6c8b944170e7c0e140c783e63765c1 (patch)
tree2c16ba7a4400bfe052a959a0d1a3b5dd2c289a06 /internal/stdlib/stdlib.go
parent79002932493504b7070d7dd4421d11d2168b4bf6 (diff)
downloadgo-x-pkgsite-cd7f8b570a6c8b944170e7c0e140c783e63765c1.tar.xz
mod: target Go 1.14 and fix the go-git deps
src-d as a company went bankrupt about six months ago, and their Go modules now survive under a new GitHub organization. Since the paths had to change, they jumped both to v5. The semver jump doesn't otherwise affect the API or backwards compatibility, so no other changes are necessary. Change-Id: I60f153799dd613bf15a407f9fedd2905fa93b469 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/237902 Reviewed-by: Julie Qiu <julie@golang.org> Reviewed-by: Jonathan Amsterdam <jba@google.com>
Diffstat (limited to 'internal/stdlib/stdlib.go')
-rw-r--r--internal/stdlib/stdlib.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/internal/stdlib/stdlib.go b/internal/stdlib/stdlib.go
index 34151b87..2dbb18bf 100644
--- a/internal/stdlib/stdlib.go
+++ b/internal/stdlib/stdlib.go
@@ -25,13 +25,13 @@ import (
"golang.org/x/pkgsite/internal/derrors"
"golang.org/x/pkgsite/internal/testing/testhelper"
- "gopkg.in/src-d/go-billy.v4/osfs"
- "gopkg.in/src-d/go-git.v4"
- "gopkg.in/src-d/go-git.v4/config"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/plumbing/filemode"
- "gopkg.in/src-d/go-git.v4/plumbing/object"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "github.com/go-git/go-billy/v5/osfs"
+ "github.com/go-git/go-git/v5"
+ "github.com/go-git/go-git/v5/config"
+ "github.com/go-git/go-git/v5/plumbing"
+ "github.com/go-git/go-git/v5/plumbing/filemode"
+ "github.com/go-git/go-git/v5/plumbing/object"
+ "github.com/go-git/go-git/v5/storage/memory"
)
// ModulePath is the name of the module for the standard library.